Posts Tagged With: cvs

CVS Through Proxy

Tagged with: , , ,

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]

No Comments »

Using CVS from Command Line

Tagged with: , , ,

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]

No Comments »

Remove CVS Information from a Folder

Tagged with: , , , , , ,

find -name CVS -exec rm -rf {} \;

NOTE: Works only with bash

No Comments »