The above solution eventually worked for me for Xcode 5.1; I shortened the code above, feel free to change directories accordingly (for example, since I use MacPorts, my svn binaries are in /opt/local/bin ):
export xcode_dir=/Applications/Xcode.app/Contents/Developer/usr/bin export svn_files="svn svnadmin svndumpfilter svnlook svnrdump svnserve svnsync svnversion" export svn_dir=/opt/local/bin for f in $svn_files; do echo "sudo mv -v $xcode_dir/$f $xcode_dir/$f.bak && sudo ln -s $svn_dir/$f $xcode_dir/$f"; done | bash
In addition to this, try deleting project.xcworkspace if you have any problems after updating SVN, and make sure that you are using the correct version of Xcode! (I was still running Xcode 5.1 BETA trying to check the changes made to the Xcode.app directory ... Stupid errors, but it took me a while to figure out)
source share