
export CVSROOT=:ext:www.server.com:/path/to/repository
cvs -q get the_project
cvs add file.php
cvs update -A file.php
cvs commit -m "added new variables" file.php
cvs remove file.php
cvs log file.php
cvs diff -r 1.1 -r 1.2 file.php
cvs -Q diff -c file.php
cvs -Q diff -c file.php | enscript -Ediff -o file.php.diff.ps
get locally modified
cvs -f status *.php | grep 'Status: Locally Modified'
cvs update -r 1.3 file.php
cvs -f status -v my_project/ > status_project_`date +%Y-%m-%e`
cvs -q update -d my_project/sql
export CVSEDITOR=/usr/bin/emacsclient