From Subversion
Command-Line Access
Use this command to anonymously check out the latest project source code:
# Non-members may check out a read-only working copy over HTTP.
svn co http://madebyfrogs.googlecode.com/svn/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. 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 work with:
svn diff
You can output this to a file by using redirection:
svn diff > my-patch.txt
GUI and IDE Access
This project’s Subversion repository may be accessed using many different client programs and plug-ins. See your client’s documentation for more information.
