博文

目前显示的是 八月, 2015的博文

SVN with Xcode

转自这里: http://blog.csdn.net/brokge/article/details/16807167 http://www.cnblogs.com/gloolo/archive/2011/12/20/2295232.html 首先:xcode目录下的xcode-》preferences-》accounts删除左边栏所有的检出的操作数据 其次:重新打开xcode开始重新checkout 最后:我的成功了Y(^_^)Y http://stackoverflow.com/questions/19177699/using-svn-1-8-3-with-xcode-5 Writing to 'defaults' won't work for Xcode 5. Newer version of Xcode ship with it's own SVN binary located in: /Applications/ Xcode . app / Contents / Developer / usr / bin / You need to replace this binary to upgrade Xcode's SVN client to 1.8. Assuming your new SVN client is located in /usr/local/bin/ (default brew install path) type the following in a terminal: cd / Applications / Xcode . app / Contents / Developer / usr / bin / sudo mv ./ svn ./ svn . org sudo mv ./ svnadmin ./ svnadmin . org sudo mv ./ svndumpfilter ./ svndumpfilter . org sudo mv ./ svnlook ./ svnlook . org sudo mv ./ svnrdump ./ svnrdump . org sudo mv ./ svnserve ./ svnserve . org sudo...