Please be informed Xcode 5 brought changes to svn directory format. So if you have Xcode 4 and 5 both together installed and already converted svn project directory to new 1.7 format you loose svn functionality in Xcode 4 (missing status, svnversion doesn't work and so on). Fortunately Tommy Domain published a workaround for those who still use Xcode 4 and Xcode 5 on the same mac. You could find it here. Shortly, the solution could be:
- Close Xcode 4.
- Download and install svn 1.7 client (download link is here)
- Go to inside the XCode4.app package, to where the SVN binaries are:
cd /Applications/Xcode.app/Contents/Developer/usr/bin/
- Backup svn* files by moving them to any other directory:
mv svn* backup
- Make a symbolical link to svn 1.7 client installed package:
ln -s /opt/subversion/bin/svn* ./
After that reopen Xcode 4 and enjoy svn tools working as well as solution from Shekhar Again, thanks to Tommy's Domain blog.