SVN
Who has access?
Everyone has anonymous read access to the Knowledgeroot SVN server. In order to have write access you must be a developer on the project.
Connecting
The SVN server is located at https://knowledgeroot.svn.sourceforge.net/svnroot/knowledgeroot. This is the address that you will use to check out a working copy, do any commits, etc.
The best way to learn how to use the Subversion repository is to read the Subversion book, located here (warning: large page).
For example, to checkout anonymously use the following command:
svn checkout https://knowledgeroot.svn.sourceforge.net/svnroot/knowledgeroot/trunk/knowledgeroot A knowledgeroot/include A knowledgeroot/include/class-pgsql.php A knowledgeroot/include/class-default-menu.php ...
To checkout Knowledgeroot as a developer, simply add your username to the end of the same command:
svn checkout https://knowledgeroot.svn.sourceforge.net/svnroot/knowledgeroot/trunk/knowledgeroot --username <your_username_here> A knowledgeroot/include A knowledgeroot/include/class-pgsql.php A knowledgeroot/include/class-default-menu ...
Once complete just cd into the directory trunk to find the knowledgeroot directory. SVN is very, very powerful - it is suggested that you at least skim the SVN book before starting.
