我需要从命令行以二进制模式提交jar文件。
我应该使用什么命令?以下不起作用:
$ cvs commit -kb -m "Committing v2.5.7" myJar.jar
Usage: cvs commit [-Rlf] [-m msg | -F logfile] [-r rev] files...
-R Process directories recursively.
-l Local directory only (not recursive).
-f Force the file to be committed; disables recursion.
-F logfile Read the log message from file.
-m msg Log message.
-r rev Commit to this branch or trunk revision.
答案 0 :(得分:20)
cvs add -kb myJar.jar
cvs commit -m "Committing v2.5.7" myJar.jar
如果您已经在没有-kb
的情况下提交了它,则可以使用
cvs admin -kb myJar.jar
您还可以使用CVSROOT/cvswrappers
指定所有*.jar
文件都是二进制文件。
答案 1 :(得分:5)
尝试:
cvs add -kb filename
然后提交