|
Gforge is a free service to Open Source developers offering easy access to the best in CVS, mailing lists, bug tracking, message boards/forums, task management, site hosting, permanent file archival, full backups, and total web-based administration. Site Feedback and Participation In order to get the most out of Gforge, you'll need to register as a site user. This will allow you to participate fully in all we have to offer. You may of course browse the site without registering, but will not have access to participate fully. Set Up Your Own Project Register as a site user, then Login and finally, Register Your Project. Thanks... and enjoy the site.
cvs guide
Anonymous CVS Access
This project's CVS repository can be checked out through anonymous
(pserver) CVS with the following instruction set. The module you wish
to check out must be specified as the modulename. When prompted for a
password for anonymous, simply press the Enter key.
cvs -d :pserver:anonymous@cvs.oss.org.cn:/cvsroot/project_name login
cvs -d :pserver:anonymous@cvs.oss.org.cn:/cvsroot/project_name checkout modulename
Developer CVS Access via SSH
Only project developers can access the CVS tree via this method.
SSH must be installed on your client machine. Substitute modulename
and developername with the proper values. Enter your site password
when prompted.
commit project module code
export CVS_RSH=ssh
cvs -d :ext:developer_name@cvs.oss.org.cn:/cvsroot/project_name import -m "write some comments here" module_name vendor_tag release_tag
checkout project module code
export CVS_RSH=ssh
cvs -d :ext:developer_name@cvs.oss.org.cn:/cvsroot/project_name checkout modulename
|
|