Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add directory in CVS

Tags:

cvs

I have a CVS Server. I want to add a new directory in some already existing directory. How can I do this?

CVS add command adds files in already existing directory. I want to know how to add a sub folder in a CVS folder.

like image 398
saurabh agarwal Avatar asked May 09 '16 08:05

saurabh agarwal


Video Answer


1 Answers

Create the directory in a local workspace. cvs add <dirname>. That's it.

Note that unlike adding files, which require a subsequent cvs commit, when adding a directory the add happens on the server as soon as you've done the cvs add so make sure you choose the right directory name.

like image 145
Mort Avatar answered Nov 09 '22 00:11

Mort