Archive for March 5th, 2007

CVS Through Proxy

Command to import a CVS project’s code through a proxy

Checkout code from remote  server(No Proxy)
cvs -z3 -d:ext:binnyva@nexty.cvs.sourceforge.net:/cvsroot/nexty co -d Nexty nexty

CVS through a Proxy
cvs -z3 "-d:pserver;proxy=192.168.0.15;proxyport=80:binnyva@nexty.cvs.sourceforge.net:/cvsroot/nexty" co -d Nexty nexty

I don’t know how to commit the changes. If someone knows, please leave a comment, mm-kay?
[tags]cvs,command,source control,proxy[/tags]

Using CVS from Command Line

cvs -d /var/www/cvs init
export CVSROOT='/var/www/cvs'

cd mypoject_folder
cvs import -m "My Project" mypoject binny main

#cvs import -m "<Message>" <poject name> <vender> <branch>

cd ..
Delete the folder 'mypoject_folder'

cvs co myproject

[tags]command,source control,cvs,linux[/tags]