12

我找到了 Mac OS X 附带 SVN 的信息。但是我的系统上没有 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?

非常感谢您的帮助。

4

1 回答 1

21

安装 Xcode 4.5 后,您需要按照这些说明安装命令行工具。成功完成后,您应该会看到 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

$ 
于 2012-09-21T14:04:41.997 回答