0

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?

BhajjiMaga
  • 221
  • 2
  • 4
  • 15
  • I think this question has the needed response: http://stackoverflow.com/questions/89181/cvs-checkout-to-a-directory – Olimpiu POP Mar 04 '14 at 06:59

1 Answers1

1

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.

BhajjiMaga
  • 221
  • 2
  • 4
  • 15
plaintext
  • 96
  • 2