LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   CVS files modified between 2 tags (https://www.linuxquestions.org/questions/programming-9/cvs-files-modified-between-2-tags-207325/)

chipix 07-20-2004 05:08 AM

CVS files modified between 2 tags
 
Hi,

I use CVS for source control system.

I have provided 2 tags (TAG1, TAG2).

How can I distinguish which files have been modified between these 2 tags?

Thanks

Hko 07-20-2004 05:53 AM

Is this what you are looking for?
Code:

cvs rdiff -s -r TAG1 -r TAG2 <you module>

chipix 07-20-2004 06:51 AM

Thanks.

I used the following approach:

cvs co -r TAG1 MODULE
cvs update -R TAG2 MODULE > changes.txt

Yours is more complete I believe.


All times are GMT -5. The time now is 05:52 AM.