fredes writes:
> 
> Im farely new to cvs and was wondering if someone can help me out with
> setting up a script to get cvs going for my client on his Redhat linux box.

CVS is simple enough to use once you get started that a script shouldn't
be needed.

> heres what Ive done so far in a file on my clients computer ....
> --------------------
> *first line for logging in...
> cvs -d :pserver:[EMAIL PROTECTED]:/home/cvsroot login

Logging in just stores the password for future use.  You only need to
log in to a repository once, not every time you want to use it.

> * this is supposed to update the AppModule
> * use co AppModule to check out the module
> 
> cvs -d :pserver:[EMAIL PROTECTED]:/home/cvsroot update AppModule

That should be:

        cd AppModule
        cvs update

Other than things like checkout/export and import, CVS commands should
be run in the working directory.  And you don't need to specify the
CVSROOT, CVS remembers it when you do the initial checkout and then uses
it for any subsequent commands in that directory.

-Larry Jones

Buddy, if you think I'm even going to BE here, you're crazy! -- Calvin

_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to