Views
Windows:
Download and install TortoiseSVNMac:
Download and install the client here.This will install the Subversion client, but it won't be convenient to use.� So we should set up a 'shortcut' to it. Here are instructions for doing that:
- Open up terminal .app (this likely will bring you to your home directory)
- Type 'nano .bash_profile' (this will open up a text file for you to edit, which might be blank)
- Add the following line to the .bash_profile, followed by a blank line
alias svn='/usr/local/bin/svn'
- Save the changes by hitting ctrl-o, then return
- Exit nano by hitting ctrl-x
- Quit the terminal, and then restart it
- Type 'svn help' on the command line. If everything worked you will get some info
If you have an error message saying : /usr/local/bin/svn : no such file or directory, it is certainly caused by having X11 installed.
You can solve that by following the next points :
open Terminal, open preferences, and select the "Execute this command" and write /bin/bash into the text field, close, quit Terminal, start Terminal again and now type "svn help"
All should be fine now...