-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Terrence Enger <[EMAIL PROTECTED]> writes:
> Greetings, > > I have the feeling that I may have seen the answer to this > question here lately, but I cannot find it now. Please > accept my apologies if this is a repeat. > > What is the method for read access to the source repository > at cvshome.org? > <https://www.cvshome.org/scdocs/ddUsingCVS_command-line.html.en> > still describes :pserver: access. Meanwhile, :ext: via ssh > rejects the userid and password with which I registered at > cvshome.org. It still is :pserver: access, but you need to tunnel port 2401 via SSH ssh -L24010:localhost:2401 [EMAIL PROTECTED] Of course, your cvshome.org password won't work for the userid tunnel. The password to use is 'tunnel' or you may download the private key to use via the URL: https://ccvs.cvshome.org/id_cvshome.key and then configure your ssh (OpenSSH users use $HOME/.ssh/config) to use this key with something like: Host cvshome.org ForwardX11 no ForwardAgent no LocalForward 24010 localhost:2401 User tunnel IdentityFile /path/to/the/file/id_cvshome.key and using the downloaded private key id_cvshome.key filename. In one window use: ssh cvshome.org and in another use: export CVSROOT=:pserver:[EMAIL PROTECTED]:24010/cvs cvs checkout ccvs where $USER is the userid you registered with cvshome.org Enjoy! -- Mark -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQFA1pJJ3x41pRYZE/gRAjOmAJ9EB5ktPm15CnRKOmsS5f72luFWEgCfeyrg o+Y/d3hyll7qpy4TWWvl+SU= =ivw1 -----END PGP SIGNATURE----- _______________________________________________ Info-cvs mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/info-cvs
