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

Is this the correct way to commit a file only to cvs?

一个文件被更改,只需要提交给那个文件的cvs,这是正确的方法吗:-

    cvs commit -m "createTables.sql"

没有

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