Abhinav
Abhinav

Reputation: 38142

Tagging a SVN Trunk/Branch code using XCode

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

Answers (1)

Andy Obusek
Andy Obusek

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

Related Questions