Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to setup SVN on Mac OS X 10.8.2? [closed]

I have found information that SVN comes with Mac OS X. But there was no SVN on my system. I have installed Subversion-1.6.17-1_10.7.x.pkg and all was good. But after update to Mac OS X 10.8.2 all SVN files were automatically removed from the system. I have tried to install Subversion-1.6.17-1_10.7.x.pkg again - but Next button is disabled. I have tried to found an updated version - but there is no Mac OS support now.

How to simply setup SVN on Mac OS X 10.8.2?

Thanks a lot for the help.

like image 882
Dmitry Avatar asked Sep 21 '12 11:09

Dmitry


People also ask

Does svn work on Mac?

SmartSVN – SVN Client. The popular Subversion client for macOS, Windows and Linux. Available as free Foundation edition and as full-featured Professional edition.


1 Answers

After you have installed Xcode 4.5 you need to follow these instructions in order to install the command line tools. Once you've done that successfully then you should see that svn is installed:

$ 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

$ 
like image 64
Paul R Avatar answered Oct 16 '22 22:10

Paul R