info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: CVS SERVER IMPLEMENTATION


From: Mark D. Baushke
Subject: Re: CVS SERVER IMPLEMENTATION
Date: Sat, 04 Mar 2006 21:01:56 -0800

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Raman H R. <address@hidden> 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-----




reply via email to

[Prev in Thread] Current Thread [Next in Thread]