Mac OS SVN Instructions
Macintosh users have it a bit easier that they don't need to download any special utilities, but also a bit harder that they need to manually type SVN commands into the Terminal.
- Decide where you want to work out of. Your Documents folder is a good place.
- Open a terminal window (go to the Applications folder, open the Utilities folder, and double-click the Terminal application).
- In the terminal window, change to the directory you want to work out of, eg.
cd Documents
- Copy and paste the following command, replacing [USERNAME] and [PASSWORD] with your SourceForge Username and Password.
svn co https://iprov.svn.sourceforge.net/svnroot/iprov iprov2 --username [USERNAME] --password [PASSWORD]
- Make changes to the file items.xml in the directory iprov/iphone-draft. Read the Windows instructions and follow the same guidelines for editing the file. If you are in need of a good, free text-editor then consider TextWrangler.
- When your changes are finished, return to the terminal window (if you've opened a new one, make sure you've navigated back to the iprov directory) and enter:
svn commit -m "[MESSAGE]"
Replace [MESSAGE] with a brief, one-line description of the changes you've made. (Make sure to include the quotation marks.)
- To update to the latest version, type:
svn update
Make sure to read the Windows instructions, as most of what's there is useful and applies to you as well.