-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Raman H R. <[EMAIL PROTECTED]> writes:
> Can any oone given me the details or
> documentation on how to implement CVS server on
> SSH in Redhat Linux?
CVS_RSH=ssh; export CVS_RSH
cvs -d :ext:your-server.your.domain/path/to/repository co CVSROOT
If you can 'ssh your-server.your.domain' and if
the 'cvs' executable is in your path and if you
have created the appropraite /path/to/repository
on the host as your CVSROOT, then you are done
with your implementation.
Example:
ssh your-server.your.domain
cvs -d /path/to/repository init
exit
CVS_RSH=ssh; export CVS_RSH ;# tcsh users use 'setenv CVS_RSH ssh'
cvs -d :ext:your-server.your.domain/path/to/repository checkout -d top .
cd top
mkdir my-new-module
cvs add my-new-module
cd my-new-module
(echo '#!/bin/sh'; echo echo Hello World) > hello-world.sh
chmod +x hello-world.sh
cvs commit -m'My hello world shell script.'
Enjoy!
-- Mark
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.3 (FreeBSD)
iD8DBQFECnDECg7APGsDnFERAhjzAKD2LRi8Kzzqe9uNY5/SoHGpPJ2FOwCglvKu
FmUvnBFj6+lovqHFyO4qxIU=
=5jYr
-----END PGP SIGNATURE-----
_______________________________________________
Info-cvs mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/info-cvs