|
SourceCode
Instructions on downloading the source code for this project.
Browse or Download Source CodeBrowse Source CodeUse Google Code's Online Source Code Browser to view source code in your web browser. Download Source Code Using Bazaar (bzr)If you plan to make changes, check out the code as yourself using bzr+svn over HTTPS: # Initialize a local repository with the rich metadata needed by bzr+svn. bzr init-repo --rich-root-pack checkpoint # Download a lightweight (tip-only) copy of the code into the local repository. # IMPORTANT: Type your google-code username instead of "your.username" in the commands below. cd checkpoint bzr checkout svn+https://your.username@checkpoint.googlecode.com/svn/trunk checkpoint-trunk # Now create a branch of this to develop your feature on your local machine. bzr branch checkpoint-trunk checkpoint-new-feature # Hack away! cd checkpoint-new-feature # hack, hack, hack bzr commit -m "blah, blah, blah" # hack, hack, hack bzr commit -m "blah, blah, blah" # Once your changes are finished, merge your changes with the checkout and commit back to google-code. cd ../checkpoint-trunk bzr update bzr merge ../checkpoint-new-feature bzr commit -m "Complete comment for SVN commit" Download Source Code Using Subversion (svn)If you plan to make changes, use this command to check out the code as yourself using HTTPS: # Project members authenticate over HTTPS to allow committing changes. svn checkout https://checkpoint.googlecode.com/svn/trunk/ checkpoint --username your.username When prompted, enter your generated googlecode.com password Use this command to anonymously check out the latest project source code: # Non-members may check out a read-only working copy anonymously over HTTP. svn checkout http://checkpoint.googlecode.com/svn/trunk/ checkpoint-read-only |