To check out the development copy of Jojo into the current directory, use this checkout command:
svn co http://svn.jojocms.org/trunk/ .
This will "check out" all of the files you'll need. To update your working copy later, go into the directory and run this command:
svn update
That will update all your file to the latest. If you've made a change you want to contribute back to this will show you the files you've changed:
svn status
And this will output a line-by-line description of all the changes in a format that makes it easy for us to incorporate:
svn diff
You can output this to a file by using redirection:
svn diff > patch.txt
