Retrieving from the Repository
The Wolf CMS project uses a subversion repository hosted at Google Code. You can checkout the code from there using either a command line- or graphical tool.
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://wolfcms.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 files to the latest version available in the repository.
To see what files you’ve changed, use:
svn status
To output a line-by-line description of all the changes you made 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
To retrieve the files from the repository without the special (.svn) repository files and directories, you can use the following command:
svn export http://wolfcms.googlecode.com/svn/trunk/
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.
