Currently I issue the following command: cvs -d /path/cvsroot checkout -P directory/powers_npg/
However, this checks out the entire directory structure that is above the directory to the location I am in when I issue this command.
I am trying to check out this tree, but I want it checked out to a different directory than my PWD.
I would like something like this command:
cvs -d /wv/path/cvsroot checkout -P directory/powers_npg/ /home/me/Desktop/
So whatever would be checked out to my current location would be checked out to /home/me/Desktop/ instead.
I am accomplishing this right now by having a script that just moves the tree when I'm done checking out, but I imagine there's a better way to accomplish this.