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: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>