cvs常用操作

1.导入项目
cd myproject
cvs -d :pserver:username@ip_address:/path/to/cvs import myproject vendorTag start

2.导出项目到沙箱
cd sandbox
cvs co myproject

3.添加文件
cvs add fileName1 fileName2
cvs commit
//或提交所有更改
myproject/cvs commit

4.删除文件
rm file
cvs remove file
cvs commit

你可能感兴趣的:(cvs)