你是否也在为mac的命令行不能执行svn命令而烦恼,本文有3种方式给你解决,XCode的svn。
系统版本:OS X 10.8.5 (12F37)
在Mac OS 实在是没有好用的SVN图形工具,想安装命令行,可以在Terminal中敲命令那样的。
请问朋友们能够帮帮我,提供个教程。
多谢!
看看Mac OS SVN Clients At-A-Glance:
Name | License | Cost |
SmartSVN | Commercial | Free, Commercial ($50/user), and Enterprise |
Versions | Commercial | $59 USD (Free Trial Available) |
Cornerstone | Commercial | $59 USD (Free Trial Available) |
Syncro SVN | Commercial | $59 USD (Free Trial Available) |
Cascade | Commercial | $200 USD per user per year |
RapidSVN | GPL v3 | Free |
Qsvn | GPL v2 | Free |
Subcommander | GPL v2 | Free |
Workbench | Apache License v1.1 | Free |
mac OS 的 terminal 中自带 SVN了。 你试试 man svn. 就可以看到帮助信息。
GUI版本的有SmartSVN 和 Cornerstone。 其中SmartSVN各种BUG, 最近刚开始用Cornerstone, 感觉还可以。
我这里提示命令不存在啊!
@WangCT:
需要Command Line Tools包。先安装Xcode. 在Xcode 菜单中 XCode->Preferences 然后选择Downloads标签。 在Components 中选择Command Line Toos 下载。
如果嫌XCode下载太慢的话,可以直接去苹果官网下线程的安装包
MacOS没有SVN的命令
正解:
http://jingyan.baidu.com/article/c35dbcb03d9f108916fcbcec.html
你是否也在为mac的命令行不能执行svn命令而烦恼,本文有3种方式给你解决,XCode的svn。
在终端敲下svn\svnadmin 显示不可用
安装Xcode,app store可直接安装XCode
利用XCode的svn
路径:/Applications/Xcode.app/Contents/Developer/usr/bin
软连接
sudo ln -s /Applications/Xcode.app/Contents/Developer/usr/bin/svn /usr/bin/svn
或者环境变量的方式解决
a)在~/.bash_profile
set PATH=$PATH:/Applications/Xcode.app/Contents/Developer/usr/bin/svn
b)在etc/paths
添加一行
/Applications/Xcode.app/Contents/Developer/usr/bin/svn
a、b二选一
或者 Xcode 安装 command line tools