这是将文件仅提交给cvs的正确方法吗?

时间:2015-05-27 12:28:05

标签: cvs

文件已更改,需要提交到仅文件的cvs,这是正确的方法: -

    cvs commit -m "createTables.sql"

1 个答案:

答案 0 :(得分:0)

没有

cvs commit filename

是你需要的。

cvs commit -m "some text" 

使用“some text”作为提交消息。

也许你想要这样的东西:

cvs commit -m "Commit file foo.bar" foo.bar

以下参考手册可在此处找到:http://cvsbook.red-bean.com/cvsbook.html#Committing