CVS access to HOKO source codes
Online:
| [ HOKO sources via viewcvs ]
|
Read access:
| CVSROOT=:pserver:anonymous@cvs.intevation.de:/home/hoko/jail/hokorepository
Password: hoko ;
Modules: geoserver
|
Who can access the Hoko CVS server?
Hoko is free software, licensed with the GPL.
Anyone can access the CVS server in read-only mode.
You can get the most recent source code this way which is
interesting for you if you are following the software development
of Hoko and do not want to wait for releases.
If you want to actively contribute source code please contact us
over the
Mailing-List
Trustworthy developers can get direct write access.
Web Interface
If you just want to browse for a particular file and its
history there is an interface for your webbrowser realised with viewcvs.
The link at the top of the page takes you there.
Read-only access with cvs
First, you need to set up your CVS client software (version 1.10 or higher).
If you don't have CVS installed, you can find the software
and installation instructions at:
CVS Bubbles.
To set up your CVS client for read access simply set
the environment variable CVSROOT to the value given above.
(Consult your shell or cvs client on how to this. Example for unix bash:
"export CVSROOT=:pserver:anonymous@cvs.intevation.de:/put/in/the/right/valuehere"
)
Then do a "cvs login" and type "greater" when your are asked
for a password.
Now you can checkout the tree using the command "cvs -z3 co modulename".
This will create a subdirectory "modulename" in the
current directory, with the full sources of the corresponding module
project in that subdirectory.
Updating
Go to any subdirectory of your directory "modulename" and execute "cvs -z3
update -d -P". The current working directory and all its subdirectories
will be updated. If you execute this command in the hoko main
directory, the whole Hoko sources will be updated. The switch "-d"
takes care that even new directories are checked out, "-P" will remove
directories which are empty after updating.
In case you just want to download/update a specific part of the
Hoko source code you can checkout/update a directory directly:
Example:
If you only want to get the latest sources:
cvs -z3 co modulename/src
or
cvs -z3 update -d modulename/src
What is CVS?
"CVS" is an acronym for the "Concurrent Versions System".
The concurrent version control system or CVS is a "Source Control" or "Revision
Control" tool designed to keep track of source changes made by groups of
developers working on the same files, allowing them to stay in sync with each
other as each individual chooses.
Borrowed from the
CVS FAQ, section 320.
More about cvs at
Pascal Molli's CVS page.
|