You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Da...@dvg.de on 2002/06/11 11:16:11 UTC

Checkin/Checkout the whole tree with ClearCase or CVS

Hello.

How can one checkin/checkout the whole tree with ClearCase or CVS tasks?
The straighforward solution is to use the filesets.

  <target name="co">
    <cccheckout reserved="false"
                nowarn="true"
                comment="hallo">
      <!-- Java -->
      <fileset dir="${dir.src}/java"
               includes="Component*.java"/>
      <!-- Cpp -->
      <fileset dir="${dir.src}/cpp"
               includes="Component*.?pp"/>
      <!-- Test -->
      <fileset dir="${dir.src}/cpp/test"
               includes="Component*.?pp"/>
      <!-- Documentation -->
      <fileset dir="${dir.doc}/"
               includes="Component*.html, Component*.txt"/>
    </cccheckout>
  </target>

But if I understood right, it isn't possible.
It there any trick?

Thank you in advance.
David Ostrovsky


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>