Perhaps someone could do a version for Windows and Linux users
Edit: Before you install this program with haste, I would recommend taking a trip to Martin Ott's Coding Monkey's page, where he keeps Mac OS X SVN Binaries up to date.
Be sure to read up on some installation tutorials before deciding on which version of SVN to install.
While you are there, I strongly recommend downloading SubEthaEdit for Mac. (Shareware), or there is a great Freeware version (tiny bit older version) here
Be sure to read up on some installation tutorials before deciding on which version of SVN to install.
While you are there, I strongly recommend downloading SubEthaEdit for Mac. (Shareware), or there is a great Freeware version (tiny bit older version) here
- Make sure you have SVN installed. If you don't have it installed, just go to http://subversion.tigris.org/project_packages.html#osx and select the second link, (the one without FINK). Download and Install.
- Open Terminal
- Add SVN to your PATH. Type these commands into the Terminal:
For Bash:- Code: Select all
touch ~/.bash_profile
open -e ~/.bash_profile
For TCSH:- Code: Select all
touch ~/.tcshrc
open -e ~/.tcshrc
This will open the ~/.bash_profile or ~/.tcshrc file in TextEdit. - Now add the following line to the TextEdit file:
For Bash:- Code: Select all
export PATH=$PATH:/usr/local/bin
For TCSH:- Code: Select all
setenv PATH /usr/local/bin:$PATH
- Save and close the TextEdit .bash_profile file, then close your terminal window and open a new one. SVN should now be installed and configured correctly.
- Decide where you would like your checkouts to be, I chose home/checkouts.
To do this, in Terminal- cd /Users/yourname
- mkdir checkout
- cd checkout
You are now inside the checkout directory and can run all the SVN commands from here. - Get source code. Just paste
- Code: Select all
svn co http://cat-proof.de:4711/olympus






