Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you create a Subversion tag in Xcode 4?

I can't figure out how to create a Subversion tag in Xcode 4. I would think it would be in the Organizer -> Repositories interface, but I can't seem to find a way. In Xcode 3, you could browse the SVN repository, click the "Copy" button in the window's top bar, and then specify the tags/ SVN directory. I don't see the same type of option in Xcode 4. Help?

My workaround for now is the command line:

svn copy trunkSourceUrl tagsDestinationUrl -m "My tag message."
like image 338
spurgeon Avatar asked Apr 14 '11 21:04

spurgeon


1 Answers

Alas, as with the ability to merge branches, it would appear tags can't be managed in XCode 4 yet. This is a bit ridiculous considering that, programmatically, creating a tag is exactly the same operation as creating a branch. Guess we're stuck with terminal commands until Apple finally gets their act together about SVN.

Funny that it did work in XCode 3.

like image 149
David R. Avatar answered Sep 29 '22 23:09

David R.