• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

cvs

Heart

Hacker
Hi,

ich will mir die aktuellsten Dateien zum ersten mal per cvs runterladen (liegen auf sourceforge).

So habe ich es versucht, klappt aber irgendwie nicht...
linux:/opt/lampp/htdocs/lmo # cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/lmo login
Logging in to :pserver:anonymous@cvs.sourceforge.net:2401/cvsroot/lmo
CVS password:
linux:/opt/lampp/htdocs/lmo # cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/lmo/lmo-komplett
Usage: cvs [cvs-options] command [command-options-and-arguments]
where cvs-options are -q, -n, etc.
(specify --help-options for a list of options)
where command is add, admin, etc.
(specify --help-commands for a list of commands
or --help-synonyms for a list of command synonyms)
where command-options-and-arguments depend on the specific command
(specify -H followed by a command name for command-specific help)
Specify --help to receive this message

The Concurrent Versions System (CVS) is a tool for version control.
For CVS updates and additional information, see
the CVS home page at http://www.cvshome.org/ or
Pascal Molli's CVS site at http://www.loria.fr/~molli/cvs-index.html
linux:/opt/lampp/htdocs/lmo #
(Bei der Passwort-Aufforderung hab ich einfach Return gedrückt, müsste doch passen oder?)

Also, wie bekomme ich die Dateien für den lmo auf meine Platte :wink:

DANKE
 

scg

Hacker
linux:/opt/lampp/htdocs/lmo # cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/lmo/lmo-komplett

Das leere Passwort ist für den anonymous-login OK. Allerdings fehlt dann IMHO das Kommando zum Auschecken, also co (checkout)

Code:
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/lmo/lmo-komplett co *
 
Oben