How to track CVS Check-Ins

家住魔仙堡 提交于 2019-12-07 14:33:49

问题


We recently created a branch out of the main branch of our code for the beta.

Now I want to check what all files have changed in the branch in the last one week. How to get that information out of CVS.

What is the command for this ?


回答1:


From the command line:

cvs log -r BRANCHNAME

Do do it for a certain date-range:

cvs log -r BRANCHNAME -d "1972-09-24"

Where 1972-09-24 is actually your date you'd like to get items newer than.



来源:https://stackoverflow.com/questions/2781066/how-to-track-cvs-check-ins

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!