Problem with propset svn:ignore - possibly Vista related. - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T04:05:26Zhttp://stackoverflow.com/feeds/question/161238http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/161238/problem-with-propset-svnignore-possibly-vista-related3Problem with propset svn:ignore - possibly Vista related.Charles Roper2008-10-02T07:44:38Z2009-03-05T09:49:16Z
<p>As I understand it, the command to ignore the <em>content</em> of a directory using SVN is this:</p>
<pre><code>svn propset svn:ignore "*" tmp/
</code></pre>
<p>This should set the ignore property on the content of the <code>tmp</code> directory, right? In other words, the wildcard is set to be the ignore value on the tmp directory. Trouble is, here's what is happening on my Windows box:</p>
<pre><code>> svn propset svn:ignore "*" ./tmp
property 'svn:ignore' set on 'app'
property 'svn:ignore' set on 'config'
property 'svn:ignore' set on 'db'
property 'svn:ignore' set on 'doc'
property 'svn:ignore' set on 'lib'
property 'svn:ignore' set on 'log'
property 'svn:ignore' set on 'nbproject'
property 'svn:ignore' set on 'public'
[etc...]
</code></pre>
<p>That's not right. Am I doing something wrong (or perhaps going insane), or is my svn on Windows broken?</p>
<p><strong>Some notes:</strong></p>
<ul>
<li>The machine is running Windows Vista SP1</li>
<li>Setting this property via Tortoise works perfectly.</li>
<li>I'm using the <a href="http://www.collab.net/downloads/subversion/" rel="nofollow">Collabnet binaries for Windows</a>:</li>
</ul>
<blockquote>
<p><code>> svn --version<br />
svn, version 1.5.2 (r32768)<br />
compiled Aug 28 2008, 19:05:34</code></p>
</blockquote>
<p><hr /></p>
<p><strong><em>Update:</em></strong> I've have just tried this on a Windows XP machine and it works as expected. So either this is a Vista specific issue, or there is a problem with my Vista configuration. Is anyone else able to reproduce this problem on Vista? I have just spotted that Vista isn't listed as one of the supported platforms on the <a href="http://www.collab.net/downloads/subversion/" rel="nofollow">CollabNet downloads page</a>.</p>
http://stackoverflow.com/questions/161238/problem-with-propset-svnignore-possibly-vista-related/161250#1612500Answer by MattW. for Problem with propset svn:ignore - possibly Vista related.MattW.2008-10-02T07:49:05Z2008-10-02T07:49:05Z<p>Try it without the trailing slash. Also, the tmp directory itself has to be added to the repository.</p>
http://stackoverflow.com/questions/161238/problem-with-propset-svnignore-possibly-vista-related/161338#1613383Answer by Jonathan Lonowski for Problem with propset svn:ignore - possibly Vista related.Jonathan Lonowski2008-10-02T08:26:25Z2009-03-05T09:49:16Z<p>The command <strong><em>should</em></strong> be working as you expect.</p>
<p>The "<strong>*</strong>" is getting globbed, which it shouldn't be doing. So, you're running: <strong>svn propset svn:ignore [value] app config db doc lib log nbproject public ... tmp</strong> (since app was the first folder affected, I'm guessing there's another folder before it).</p>
<p>2 things you can try:</p>
<ol>
<li>Specify a list file: <strong>svn propset svn:ignore tmp -F .svnignore</strong></li>
<li>Just specify the path: <strong>svn propset svn:ignore tmp</strong>. This should open your default text editor (if configured) to allow you to write and save the list.</li>
</ol>
<p><hr /></p>
<p><strong>Reply to comment</strong></p>
<p>Since you're now attempting to correct the setting, <strong>propedit</strong> and <strong>propdel</strong> would work fine -- especially if you have other changes within the directory.</p>
<p>But, if you don't have any other changes to worry about (check <strong>svn st</strong>), it'll be faster using <strong>svn revert -R</strong> and <strong>svn propset</strong>.</p>
http://stackoverflow.com/questions/161238/problem-with-propset-svnignore-possibly-vista-related/161357#1613573Answer by brian d foy for Problem with propset svn:ignore - possibly Vista related.brian d foy2008-10-02T08:32:35Z2008-10-02T08:32:35Z<p>This doesn't answer your svn question, but why are you trying to ignore all the contents of a directory? It seems to me that if you want a temporary directory at some point in the build, you should make the directory as part of the build instead of it being there from the repo.</p>
<p>Are you trying to ignore it because it's already there and you can't delete it?</p>
<p>Anyway, from my unix command line, this worked for me to ignore untracked file in a diretory called tmp</p>
<pre>
$ svn --version
svn, version 1.5.1 (r32289)
compiled Aug 28 2008, 10:00:12
$ svn propset svn:ignore '*' tmp
</pre>
<p>Is Windows horking your quoting?</p>
http://stackoverflow.com/questions/161238/problem-with-propset-svnignore-possibly-vista-related/161380#1613802Answer by Greg Hewgill for Problem with propset svn:ignore - possibly Vista related.Greg Hewgill2008-10-02T08:41:52Z2008-10-02T08:41:52Z<p>It sounds to me like the svn.exe binary compiled for windows is doing built-in globbing, which is something that it wouldn't normally do on a unix build because the unix shell is expected to do globbing while constructing the command line. I would consider that unexpected behaviour, especially since you can't seem to work around the globbing.</p>
<p>As others have pointed out, you can supply the <code>*</code> using the <code>-F</code> option or interactively in a text editor.</p>
<p>However, I think you may not be going about this in the easiest way. For ignoring an entire subdirectory, I would do something like this:</p>
<pre><code>svn propset svn:ignore tmp .
</code></pre>
<p>This sets the <code>svn:ignore</code> property on <code>.</code> (the current directory, the parent of <code>tmp/</code>) that tells it to ignore the <code>tmp</code> subdirectory and everything underneath it.</p>
http://stackoverflow.com/questions/161238/problem-with-propset-svnignore-possibly-vista-related/161387#1613872Answer by Lasse V. Karlsen for Problem with propset svn:ignore - possibly Vista related.Lasse V. Karlsen2008-10-02T08:43:18Z2008-10-02T08:43:18Z<p>Which version of subversion are you using?</p>
<p>I tried 1.5.2 on Windows, and it only changed the property on the tmp directory:</p>
<pre><code>[C:\Temp\temp] :svn propset svn:ignore "*" tmp/
property 'svn:ignore' set on 'tmp'
</code></pre>
<p>and:</p>
<pre><code>[C:\Temp\temp] :svn proplist *
svn: Skipping argument: '.svn' ends in a reserved name
Properties on 'tmp':
svn:ignore
</code></pre>
http://stackoverflow.com/questions/161238/problem-with-propset-svnignore-possibly-vista-related/162162#1621623Answer by Charles Roper for Problem with propset svn:ignore - possibly Vista related.Charles Roper2008-10-02T13:09:34Z2008-10-02T14:22:03Z<p>It looks like Microsoft, in their infinite wisdom, have <a href="https://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1917798&SiteID=1" rel="nofollow">changed the behavior of wildcard expansion in Windows Vista</a>:</p>
<p>So instead of an escaped wildcard being passed in, it gets expanded:</p>
<blockquote>
<p>Under Win 95, 98, 2000, XP, the application runs as expected: it does wildcard expansion when parameters are like «*.txt» and it does NOT when parameters are like «"*.txt"». Under Windows Vista, wildcard expansion takes place always, or, said otherwise, double quotation marks DOES NOT suppress it.</p>
</blockquote>
<p>There is further discussion on this issue on the <strong><a href="http://subversion.open.collab.net/ds/viewMessage.do?dsForumId=4&viewType=browseAll&dsMessageId=115201#messagefocus" rel="nofollow">Collabnet forum</a></strong>.</p>
http://stackoverflow.com/questions/161238/problem-with-propset-svnignore-possibly-vista-related/435168#4351680Answer by pat for Problem with propset svn:ignore - possibly Vista related.pat2009-01-12T11:31:24Z2009-01-12T11:31:24Z<p>It's reasonable to use a GUI SVN client (unless you're a masochist!). If you're on Windows TortoiseSVN should be you first port of call. Right click on the file you want to ignore then click "TortoiseSVN -> Properties". In the properties dialog you can ignore the entire directory by clicking on the drop down arrow for "Name" and selecting "svn:ignore". Then in the values box just type "*" for all. This is all without the quotes of course.</p>