Using CVS Over SSH

December 2, 2004
Set the CVS_RSH environment variable.
export CVS_RSH="ssh"
Set the CVSROOT environment variable using your SSH username and the path to CVS on the remote server.
export CVSROOT=:ext:username@domain:/cvspath

Now you can simply run CVS commands. It will ask you each time for your SSH password.

Related Posts