如何在Mac OS X 10.8.2上设置SVN?

时间:2012-09-21 11:54:31

标签: macos svn install installation

我发现SVN附带Mac OS X的信息。但我的系统上没有SVN。我安装了Subversion-1.6.17-1_10.7.x.pkg,一切都很好。但在更新到Mac OS X 10.8.2后,所有SVN文件都自动从系统中删除。我曾尝试再次安装Subversion-1.6.17-1_10.7.x.pkg - 但是下一步按钮被禁用。我试图找到一个更新版本 - 但现在没有Mac OS支持。

如何在Mac OS X 10.8.2上简单设置SVN?

非常感谢你的帮助。

1 个答案:

答案 0 :(得分:19)

安装Xcode 4.5后,您需要按these instructions才能安装命令行工具。成功完成后,您应该会看到已安装svn:

$ which svn
/usr/bin/svn
$ svn --version
svn, version 1.6.18 (r1303927)
   compiled Aug  4 2012, 19:46:53

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

$ 
相关问题