info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Want to get only those files changed since the time we last tagge d.


From: Mark D. Baushke
Subject: Re: Want to get only those files changed since the time we last tagge d.
Date: Fri, 07 Mar 2003 08:08:30 -0800

"Subramani, GnanaShekar (MED, TCS)" writes:

> How can I checkout/get only those files which have changed since the
> time we had tagged a build.  I am thinking of moving only these changes
> to the application environments.
> 
> Request you to give your suggestion/solutions.

Well, it is not pretty, but given a tag called "tagged-a-build" and a
module called "my-module", something like this might work:

  cvs rdiff -rtagged-a-build my-module |\
   grep "^Index:" | awk "{print $2}" |\
   xargs cvs checkout

However, I suspect this may not be the best method of determining
what should go into another branch or application.

        Good luck,
        -- Mark




reply via email to

[Prev in Thread] Current Thread [Next in Thread]