Reputation: 564
According to the Apache Subversion home-page, svn is bundled with Mac OS X. This is corroborated by Apple's own Open-Source-in-Mac-OS-X directory page. Trying to run it on my Mountain Lion 10.8.4, however, looks like this:
foo:bar user$ svn
-bash: svn: command not found
Where has it gone to?
Upvotes: 3
Views: 12030
Reputation: 1001
Steps:
sudo nano /etc/paths
/Applications/Xcode.app/Contents/Developer/usr/bin
For in depth details, refer:
http://www.threeeyedbird.com/blog/2012/08/06/where-did-svn-go-after-upgrading-to-os-x-mountain-lion-10.8/
Upvotes: 4
Reputation: 564
This blog describes in detail how svn is now bundled with Xcode, rather than Mac OS X itself, and contains suggestions how to amend the system path to work around this issue, provided you already have Xcode installed. In short, the 'bundled' svn may now be found here:
foo:bar user$ which svn
/Applications/Xcode.app/Contents/Developer/usr/bin/svn
Upvotes: 9