Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的源代码使用 CVS(特别是 CVSNT)进行版本控制。
给定文件的完整路径和分支的名称,我如何才能获得分支上文件的所有修订版(只是像 1.341.2.1 这样的数字)?
如果您正在查找分支 1.341 上bar模块中文件的所有修订,可能最简单的事情是:foo
bar
foo
grep ^1.341 $CVSROOT/foo/bar,v
或者你总是可以这样做:
cvs log bar | grep '^revision 1.341