I\'ve updated to XCode 5 today (using the Mac AppStore) and ever since it keeps crashing whenever I open my previous projects (that are working copies of repos located in my
i had the same issue and solved it.
on previous xcode versions I used absolute ip address to checkout the project (e.g https://10.0.0.1:8443)
but of course this doesn't match the hostname specified by server's certificate.
so I used the terminal command line to make commit all my code and then I opened a new folder and re-checkedout the project, this time using the hostname as the svn address (e.g https://{hostname}:8443)
then, on Xcode 5, open xcode without all previous projects (press alt+shift when clicking the xcode icon to do this) . go to your preferences and press the accounts tab. there you should see your old repository address, delete it.
now open your project from the new re-checkeout folder you made in the previous steps. viola - all should be working.