CVS JadminUsers
From Wickle Wiki
Contents |
Using the cvs to retrieve wickle projects from the source
About CVS
CVS (Concurrent Versions System) is a tool used by many software developers to manage changes within their source code tree. CVS provides the means to store not only the current version of a piece of source code, but a record of all changes (and who made those changes) that have occurred to that source code. Use of CVS is particularly common on projects with multiple developers, since CVS ensures changes made by one developer are not accidentally removed when another developer posts their changes to the source tree.
Using it
From the linux command line you can retrieve an application easily:
export CVSROOT=:pserver:cvs@213.60.51.54:/usr/local/cvsroot cvs login (with password cvs ) cvs co wickle/JAdminUsers
more easy :
cvs -d:pserver:cvs@www.wickle.com:/usr/local/cvsroot login cvs -z3 -d:pserver:cvs@www.wickle.com/usr/local/cvsroot co wickle/JAdminUsers
You can use a graphical interface, like:
- TortoiseCVS (for windows is the best)
- smartcvs (on java)
- cervisia (only for linux)
- wincvs (the classic for all OS)
You can access the CVS from a graphical interface, you must point a browser to the URL: http://www.wickle.com/cvs/JAdminUsers
Retrieving from CVS a specified version
To retrieve a specified version from the CVS, for example a stable release of the software , from the command line, first you must log in and setup your CVSROOT environment of course :
cvs checkout -r REV_1_0_3 wickle/JAdminUsers

