关于SourceTree使用svn配置和设置

来源:互联网 发布:开单软件哪个好 编辑:程序博客网 时间:2024/05/29 16:26

用sourcetree拉取svn库的配置

在命令提示行输入

svn ls https://XXXXX/XXXXX/    你的远端svn地址

提示输入密码,因为第一次用户名默认是OS X的当前用户,所以先随便输一个。错误,第二次重新要求输入username即安全邮箱,之后password即安全密码。验证完毕会返回警告,和coda返回的一模一样,站点不受信任,继续吗?(R)eject, accept (t)emporarily or accept (p)ermanently? 轻按p(永久)即可。

安装命令行工具,已经安装xcode的情况下: xcode-select --install

参考:http://tech.myonlylonely.com/sourcetree在yosemite下提交到sae的一些问题解决/#codesyntax_1

参考:http://www.jianshu.com/p/38d92385e0f6

这两个文字里面最后命令行:

sudo ln -s /Applications/Xcode.app/Contents/Developer/Library/Perl/5.18/darwin-thread-multi-2level/SVN /System/Library/Perl/Extras/5.18/SVNsudo ln -s /Applications/Xcode.app/Contents/Developer/Library/Perl/5.18/darwin-thread-multi-2level/auto/SVN/ /System/Library/Perl/Extras/5.18/auto/SVN
有误。会报错误:

ln: /System/Library/Perl/Extras/5.18/SVN: Operation not permitted

修改如下:

sudo ln -s /Applications/Xcode.app/Contents/Developer/Library/Perl/5.18/darwin-thread-multi-2level/SVN/ /System/Library/Perl/Extras/5.18/SVNsudo ln -s /Applications/Xcode.app/Contents/Developer/Library/Perl/5.18/darwin-thread-multi-2level/auto/SVN/ /System/Library/Perl/Extras/5.18/auto/SVN
希望能帮到后面的人吧。做个总汇。。





原创粉丝点击