Xcode 5 crashes with SVN version 1.7 - self signed certificate

后端 未结 5 919
陌清茗
陌清茗 2020-12-21 15:45

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

5条回答
  •  抹茶落季
    2020-12-21 16:13

    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.

提交回复
热议问题