Command lines for remotely use CVS

remotely check out a project

cvs -d :ext:hostname:/usa/dir/cvs/ co -d blank-paper blank-paper

remotely import a project

cd into the folder you want to add as a new project
cvs -d :ext:hostname:/usa/dir/cvs/ import blank-doc INITIAL start

remotely update
cd into the folder
cvs update

remotely commit
cd into the folder
cvs commit

remove a file
cd into the folder
cvs remove filename

Leave a Comment