bodewig 00/11/08 09:16:07
Modified: docs Tag: ANT_12_FIXES index.html Log: Update documentation in the online version as well. Submitted by: Julian M. Savage <[EMAIL PROTECTED]> Revision Changes Path No revision No revision 1.136.2.6 +6 -1 jakarta-ant/docs/index.html Index: index.html =================================================================== RCS file: /home/cvs/jakarta-ant/docs/index.html,v retrieving revision 1.136.2.5 retrieving revision 1.136.2.6 diff -u -r1.136.2.5 -r1.136.2.6 --- index.html 2000/11/06 10:52:02 1.136.2.5 +++ index.html 2000/11/08 17:15:57 1.136.2.6 @@ -1439,7 +1439,7 @@ <h2><a name="cvs">Cvs</a></h2> <h3>Description</h3> <p>Handles packages/modules retrieved from a -<a href="http://www.cyclic.com/">CVS</a> repository.</p> +<a href="http://www.cvshome.org/">CVS</a> repository.</p> <p>When doing automated builds, the <a href="#get">get task</a> should be preferred over the <i>checkout</i> command, because of speed.</p> <h3>Parameters</h3> @@ -1510,6 +1510,11 @@ <pre> <cvs dest="${ws.dir}" command="update" /></pre> <p>updates the package/module that has previously been checked out into "${ws.dir}".</p> +<pre> <cvs command="-q diff -u -N" output="patch.txt"/></pre> +<p>silently (-q) creates a file called patch.txt which contains a unified (-u) diff which includes new files added via "cvs add" (-N) and can be used as input to patch.</p> +<pre> <cvs command="update -A -d"/></pre> +<p>Updates from the head of repository ignoring sticky bits (-A) and creating any new directories as necessary (-d).</p> +<p>Note: the text of the command is passed to cvs "as-is" so any cvs options should appear before the command, and any command options should appear after the command as in the diff example above. See <a href="http://www.cvshome.org/docs/manual/index.html">the cvs manual</a> for details, specifically the <a href="http://www.cvshome.org/docs/manual/cvs_16.html">Guide to CVS commands</a></p> <hr> <h2><a name="delete">Delete</a></h2> <h3>Description</h3>
