/ acm / sigsoft / cvs workshop / Nov '96
Create a CVS repository if there is not already one.
Add this to /etc/services:
cvs 2401/tcp # remote cvs serverAdd this to /etc/inetd.conf:
cvs stream tcp nowait root /path/to/cvs cvs pserverRestarted inetd. Optionally, you may create a passwd file in the CVSROOT that contains name:cryptedpasswd pairs, one per line. This allows users to avoid using their normal login passwords with CVS.
:pserver:joeuser@foo.bar.com:/path/to/cvsrootBefore you can issues any CVS commands, you must:
$ cvs loginand enter your password. CVS stores your crypt()'d password in .cvspass in your home directory for use in future connections. The paranoid may wish to delete this between sessions. Once you have logged in, you may issue cvs commands just the same as you would with a local repository.