I am creating my first project in subversion. So far I have

 branches 
 tags 
 trunk

I think I immediately need to make branches singular and start over. Update branches is the norm.

I have been doing work in trunk and moving the contents to tags as follows


    mkdir tags/1.0
    cp -rf trunk/* tags/1.0
    svn add tags/1.0
    svn commit -m " create a first tagged version"


My gut tells me this is totally wrong and I should maintain some relationship between the files using svn copy. The files I create in this way will have no relationship to each other and I am sure I will miss out on subversion features. Am I correct?

Should I use svn copy for the individual files?

    mkdir tags/1.0
    svn add tags/1.0
    svn copy trunk/file1 tags/1.0
    svn copy trunk/file2 tags/1.0
    svn copy trunk/file3 tags/1.0
    svn commit -m " create a first tagged version"

Should I use svn copy on the entire directory?

    svn copy cp -rf trunk tags/1.0
    svn commit -m " create a first tagged version"
link|improve this question

1  
Unfortunately I don't make all the choices in this case... git is pretty damn magic. – ojblass May 13 '09 at 3:41
feedback

3 Answers

up vote 56 down vote accepted

You are correct in that it's not "right" to add files to the tags folder.

You've correctly guessed that copy is the operation to use; it lets Subversion keep track of the history of these files, and also (I assume) store them much more efficiently.

In my experience, it's best to do copies ("snapshots") of entire projects, i.e. all files from the root check-out location. That way the snapshot can stand on its own, as a true representation of the entire project's state at a particular point in time.

This part of "the book" shows how the command is typically used.

link|improve this answer
Much thanks... any comment on the branches... branch renaming? – ojblass May 12 '09 at 6:26
4  
The 1.1 version of the book is terribly outdated. Here's a better link: svnbook.red-bean.com/nightly/en/svn.branchmerge.tags.html – Quinn Taylor Nov 2 '11 at 19:37
feedback

Just make

svn copy http://svn.example.com/project/trunk \
      http://svn.example.com/project/tags/1.0 -m "Release 1.0"
link|improve this answer
6  
I marked this as answer. Just one extra note. You can get an previous revision of the trunk and "tag" it as well. the command: svn copy -r 123 "svn.example.com/project/trunk"; "svn.example.com/project/tags/1.0"; -m "Tagging, but using older revision (123)." – granadaCoder Oct 18 '11 at 16:39
feedback

Could use Tortoise:

http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-branchtag.html

link|improve this answer
1  
I am going to build a larger system on top of this so I need to focus on the core functions provided. – ojblass May 12 '09 at 6:20
1  
Thank you! The command line may be correct, but this has been more useful. – Ray301 Mar 14 at 16:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.