Mac OS X 10.8安装SVN的常用的三种方法
- ln 创建软连接
- 配置全局环境
- Xcode安装命令行工具
对于Mac新系统Mountain Lion 10.8.3 而言,其终端自带的svn 命令默认已经不可用了:
1 2 |
micmiu-mbp:~ micmiu$ svn -bash: svn: command not found |
下面介绍详细介绍安装svn常用的三种方法:
方法一、首先安装Xcode工具(appstore可以直接安装),然后再终端里如下命令即可:
1 |
sudo ln -s /Applications/Xcode.app/Contents/Developer/usr/bin/svn /usr/bin/svn |
tips: /Applications/Xcode.app 指xcode的安装路径,这里的值是它的默认路径
终端输入:svn –version 可验证下命令是否成功:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
micmiu-mbp:~ micmiu$ svn --version svn, version 1.6.18 (r1303927) compiled Feb 6 2013, 14:18:52 Copyright (C) 2000-2009 CollabNet. Subversion is open source software, see http://subversion.apache.org/ This product includes software developed by CollabNet (http://www.Collab.Net/). The following repository access (RA) modules are available: * ra_neon : Module for accessing a repository via WebDAV protocol using Neon. - handles 'http' scheme - handles 'https' scheme * ra_svn : Module for accessing a repository using the svn network protocol. - handles 'svn' scheme * ra_local : Module for accessing a repository on local disk. - handles 'file' scheme |
方法二、配置全局环境变量/etc/paths
编辑/etc/paths ,把xcode相关bin路径:/Applications/Xcode.app/Contents/Developer/usr/bin
添加到文件末:
1 2 3 4 5 6 |
/usr/bin /bin /usr/sbin /sbin /usr/local/bin /Applications/Xcode.app/Contents/Developer/usr/bin |
这个方法可以把xcode下面很多的命令直接添进终端的环境变量里面。
方法三、Xcode安装命令行工具
打开xcode,依次 Preferences > Downloads > Command Line Tools ,点击 install 安装。
本文介绍到此结束@Michael Sun.
原创文章,转载请注明: 转载自micmiu – 软件开发+生活点滴[ http://www.micmiu.com/ ]
0 条评论。