Reputation: 38142
I am using XCode 4.3 and have integrated it with SVN. How do we tag a particular code from the XCode.
I want to copy and tag the entire trunk code to Tags folder. I used to do this with XCode 3.2.6.
Upvotes: 2
Views: 1207
Reputation: 12832
I ran into this same problem, and I just ended up using the command line, easy enough:
svn copy <svn root path>/trunk <svn root path>/tags/<new tag>
Upvotes: 6