Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>You're probably safest excluding particular filetypes, rather than picking those you want to include, as you could then add a new type and not realize it wasn't versioned.</p> <p>On a per-directory basis, you can edit the <a href="http://svnbook.red-bean.com/en/1.1/ch07s02.html#svn-ch-7-sect-2.3.3" rel="noreferrer">svn:ignore</a> property.</p> <p>Run</p> <pre><code>svn propedit svn:ignore . </code></pre> <p>for each relevant directory to bring up an editor with a list of patterns to ignore.</p> <p>Then put a pattern on each line corresponding to the filetype you'd like to ignore:</p> <pre><code>*.user *.exe *.dll </code></pre> <p>and what have you.</p> <p>Alternatively, as has been suggested, you can add those patterns to the <code>global-ignores</code> property in your ~/.subversion/config file (or <code>"%APPDATA%\Subversion\config"</code> on Windows - see <a href="http://svnbook.red-bean.com/en/1.1/ch07.html#svn-ch-7-sect-1.1" rel="noreferrer">Configuration Area Layout in the red bean book for more information</a>). In that case, separate the patterns with spaces. Here's mine. <code>#</code> at the beginning of the line introduces a comment. I've ignored Ankh .Load files and all *.resharper.user files:</p> <pre><code>### Set global-ignores to a set of whitespace-delimited globs ### which Subversion will ignore in its 'status' output, and ### while importing or adding files and directories. # global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store global-ignores = Ankh.Load *.resharper.user </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload