"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


_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to