开发者

How to track CVS Check-Ins

开发者 https://www.devze.com 2022-12-29 22:29 出处:网络
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 infor

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 ?


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消