I have to checkout a project which is in the CVS repository using command line to a specified directory.
cvs -z3 -d:pserver:username@localhost:/myrepoloc co -P MavenTestApp
What option should i use to checkout to a particular directory?
I have to checkout a project which is in the CVS repository using command line to a specified directory.
cvs -z3 -d:pserver:username@localhost:/myrepoloc co -P MavenTestApp
What option should i use to checkout to a particular directory?
Make the module path relative to your CVSROOT directory, in your example this is /home/cvsrepo. You command should end with
checkout -d MavenTestApp path/to/MavenTestApp
without the leading slash. This will checkout MavenTestApp under you current working directory.