문제

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top