I've heard repeatedly that Xcode's integration with SVN is lacking, but seeing as I have personally never used it, I cannot help but wonder why.

Now I'm starting a new project, and once again SCM has come up. This time though, I think I want a better idea of what exactly Xcode does and doesn't do right with SVN.

So, have any horror stories?

link|improve this question
feedback

5 Answers

up vote 4 down vote accepted

A total non-answer to what you're asking but...

I'm a real big fan of Versions (www.versionsapp.com) and its made me not care an ounce about any Xcode integration with SVN.

link|improve this answer
Great app, but costs 55$. – Stanislav Jul 29 '09 at 12:49
feedback

No horror stories: I've been using Xcode 3.1.2 with SVN for almost a year now and it's good enough. The Xcode SCM (Source Control Manager) is quite basic, but stable. The only thing it does not do well is removing a file.

When you delete a file, Xcode will offer to remove the file from version control as well, but when it's time to commit it will complain that the file is missing. So I generally do an 'svn rm' from the terminal to remove a file, rather than deleting it from within the Xcode Files & Groups panel. If I forgot and svn keeps fussing, 'svn cleanup' usually sorts it out.

link|improve this answer
feedback

It doesn't show you progress while commiting or checking-out. Also if there is a project file conflict then you are given options either to keep it or replace by latest copy. Either way somebody's changes are lost.

Apart of that SVN integration is pretty usable - we rely on that for several months.

link|improve this answer
feedback

Personally, the teams of developers I've worked with have never regretted switching from svn to git (sorry, Stack Overflow won't let me put in the link) or bzr (http://www.bazaar-vcs.org/). You might look into them, although I don't know much about Xcode integration. (Everyone I know has been a command line junkie -- or used TortiseBZR, etc. on Windows.)

link|improve this answer
Ya, I'm torn between hg and git at this point, but have definitely moved past svn. – DarthNerdus Aug 9 '09 at 4:38
feedback

Apple's 2005 advice.

link|improve this answer
I have no idea why someone gave you a down vote on that answer. I found it useful – twerdster Dec 5 '10 at 17:55
feedback

Your Answer

 
or
required, but never shown

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