Subversion Access
Download the latest subversion build - GNU tarball
This all assumes you have Subversion installed on the machine you're working on. If you don't, check out the link above.
To check out the latest BluuCMS codebase, try this checkout command:
svn co https://bluucms.svn.sourceforge.net/svnroot/bluucms/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 submit back to the core this will show you what 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 > my-patch.txt