Browse Source

Add a note to the _svn-Hack of Subversion 1.3.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@432534 13f79535-47bb-0310-9956-ffa450edef68
master
Jan Materne 19 years ago
parent
commit
973f53b4aa
1 changed files with 16 additions and 2 deletions
  1. +16
    -2
      docs/manual/CoreTasks/defaultexcludes.html

+ 16
- 2
docs/manual/CoreTasks/defaultexcludes.html View File

@@ -69,12 +69,26 @@ backup files and then restore normal behavior</p>
&lt;defaultexcludes default=&quot;true&quot;/&gt;
</pre>

<h3>Notes</h3>
By default the pattern <tt>**/.svn</tt> ane <tt>**/.svn/**</tt> are set as default
excludes. With version 1.3 Subversion supports the
<a target="_blank" href="http://subversion.tigris.org/svn_1.3_releasenotes.html">&quot;_svn hack&quot;</a>.
That means, that die svn-libraries evaluate environment variables and use <i>.svn</i>
or <i>_svn</i> directory regarding to that value. We had chosen not to evaluate environment variables to
get a more reliable build. Instead you have to change the settings by yourself by changing
the exclude patterns:
<pre>
&lt;defaultexcludes remove=&quot;**/.svn&quot;/&gt;
&lt;defaultexcludes remove=&quot;**/.svn/**&quot;/&gt;
&lt;defaultexcludes add=&quot;**/_svn&quot;/&gt;
&lt;defaultexcludes add=&quot;**/_svn/**&quot;/&gt;
</pre>


<hr>

<p align="center">Copyright &copy; 2003-2005 The Apache Software Foundation. All rights
<p align="center">Copyright &copy; 2003-2006 The Apache Software Foundation. All rights
Reserved.</p>

</body>
</html>


Loading…
Cancel
Save