CVS常用技巧

1.直接在命令行中输入用户名和密码登录
cvs -d :pserver:username:password@serverip:port/RepositoryName login

 

2.Checkout空目录

如果直接使用checkout或update命令,将不能够将CVS上的空目录checkout到本地目录中,这时,需要执行

cvs update -d

 

3.解决Sticky Tag

cvs update -A

 

4.增加/更新/提交多个文件

cvs add -kkv "/CVSFile/file1" "/CVSFile/file2" .....

cvs update "/CVSFile/file1" "/CVSFile/file2" .....

cvs ci -m -l "/CVSFile/file1" "/CVSFile/file2" .....

 

你可能感兴趣的:(cvs)