How do I ignore files in Subversion?
Also, how do I find files which are not under version control?
(This answer has been updated to match SVN 1.8 and 1.9's behaviour)
You have 2 questions:
By "ignored file" I mean the file won't appear in lists even as "unversioned": your SVN client will pretend the file doesn't exist at all in the filesystem.
Ignored files are specified by a "file pattern". The syntax and format of file patterns is explained in SVN's online documentation: http://svnbook.red-bean.com/nightly/en/svn.advanced.props.special.ignore.html "File Patterns in Subversion".
Subversion, as of version 1.8 (June 2013) and later, supports 3 different ways of specifying file patterns. Here's a summary with examples:
global-ignores
option:global-ignores
list won't be shared by other users, and it applies to all repos you checkout onto your computer.C:\Users\{you}\AppData\Roaming\Subversion\config
Software\Tigris.org\Subversion\Config\Miscellany\global-ignores
in both HKLM
and HKCU
.~/.subversion/config
svn:ignore
property, which is set on directories (not files):.gitignore
works.svn:ignore
is applied to directories and is non-recursive or inherited. Any file or immediate subdirectory of the parent directory that matches the File Pattern will be excluded.While SVN 1.8 adds the concept of "inherited properties", the svn:ignore
property itself is ignored in non-immediate descendant directories:
cd ~/myRepoRoot # Open an existing repo.
echo "foo" > "ignoreThis.txt" # Create a file called "ignoreThis.txt".
svn status # Check to see if the file is ignored or not.
> ? ./ignoreThis.txt
> 1 unversioned file # ...it is NOT currently ignored.
svn propset svn:ignore "ignoreThis.txt" . # Apply the svn:ignore property to the "myRepoRoot" directory.
svn status
> 0 unversioned files # ...but now the file is ignored!
cd subdirectory # now open a subdirectory.
echo "foo" > "ignoreThis.txt" # create another file named "ignoreThis.txt".
svn status
> ? ./subdirectory/ignoreThis.txt # ...and is is NOT ignored!
> 1 unversioned file
(So the file ./subdirectory/ignoreThis
is not ignored, even though "ignoreThis.txt
" is applied on the .
repo root).
Therefore, to apply an ignore list recursively you must use svn propset svn:ignore <filePattern> . --recursive
.
<filePattern>
value is different in a child directory then the child's value completely overrides the parents, so there is no "additive" effect.<filePattern>
on the root .
, then you must change it with --recursive
to overwrite it on the child and descendant directories.I note that the command-line syntax is counter-intuitive.
svn ignore pathToFileToIgnore.txt
however this is not how SVN's ignore feature works.svn:global-ignores
property. Requires SVN 1.8 (June 2013):svn:ignore
, except it makes use of SVN 1.8's "inherited properties" feature.svn:ignore
, the file pattern is automatically applied in every descendant directory (not just immediate children).
svn:global-ignores
with the --recursive
flag, as inherited ignore file patterns are automatically applied as they're inherited.Running the same set of commands as in the previous example, but using svn:global-ignores
instead:
cd ~/myRepoRoot # Open an existing repo
echo "foo" > "ignoreThis.txt" # Create a file called "ignoreThis.txt"
svn status # Check to see if the file is ignored or not
> ? ./ignoreThis.txt
> 1 unversioned file # ...it is NOT currently ignored
svn propset svn:global-ignores "ignoreThis.txt" .
svn status
> 0 unversioned files # ...but now the file is ignored!
cd subdirectory # now open a subdirectory
echo "foo" > "ignoreThis.txt" # create another file named "ignoreThis.txt"
svn status
> 0 unversioned files # the file is ignored here too!
This whole arrangement was confusing for me, because TortoiseSVN's terminology (as used in their Windows Explorer menu system) was initially misleading to me - I was unsure what the significance of the Ignore menu's "Add recursively", "Add *" and "Add " options. I hope this post explains how the Ignore feature ties-in to the SVN Properties feature. That said, I suggest using the command-line to set ignored files so you get a feel for how it works instead of using the GUI, and only using the GUI to manipulate properties after you're comfortable with the command-line.
The command svn status
will hide ignored files (that is, files that match an RGA global-ignores
pattern, or match an immediate parent directory's svn:ignore
pattern or match any ancesor directory's svn:global-ignores
pattern.
Use the --no-ignore
option to see those files listed. Ignored files have a status of I
, then pipe the output to grep
to only show lines starting with "I".
The command is:
svn status --no-ignore | grep "^I"
For example:
svn status
> ? foo # An unversioned file
> M modifiedFile.txt # A versioned file that has been modified
svn status --no-ignore
> ? foo # An unversioned file
> I ignoreThis.txt # A file matching an svn:ignore pattern
> M modifiedFile.txt # A versioned file that has been modified
svn status --no-ignore | grep "^I"
> I ignoreThis.txt # A file matching an svn:ignore pattern
ta-da!
Use the following command to create a list not under version control files.
svn status | grep "^\?" | awk "{print \$2}" > ignoring.txt
Then edit the file to leave just the files you want actually to ignore. Then use this one to ignore the files listed in the file:
svn propset svn:ignore -F ignoring.txt .
Note the dot at the end of the line. It tells SVN that the property is being set on the current directory.
Delete the file:
rm ignoring.txt
Finally commit,
svn ci --message "ignoring some files"
You can then check which files are ignored via:
svn proplist -v
You can ignore a file or directory like .gitignore. Just create a text file of list of directories/files you want to ignore and run the code below:
svn propset svn:ignore -F ignorelist.txt .
OR if you don't want to use a text file, you can do it like this:
svn propset svn:ignore "first
second
third" .
Source: Karsten's Blog - Set svn:ignore for multiple files from command line
If you are using TortoiseSVN, right-click on a file and then select TortoiseSVN / Add to ignore list. This will add the file/wildcard to the svn:ignore
property.
svn:ignore
will be checked when you are checking in files, and matching files will be ignored. I have the following ignore list for a Visual Studio .NET project:
bin obj
*.exe
*.dll
_ReSharper
*.pdb
*.suo
You can find this list in the context menu at TortoiseSVN / Properties.
I found the article .svnignore Example for Java.
Example: .svnignore for Ruby on Rails,
/log
/public/*.JPEG
/public/*.jpeg
/public/*.png
/public/*.gif
*.*~
And after that:
svn propset svn:ignore -F .svnignore .
Examples for .gitignore. You can use for your .svnignore
Another solution is:
svn st | awk '/^?/{print $2}' > svnignore.txt && svn propget svn:ignore >> svnignore.txt && svn propset svn:ignore -F svnignore.txt . && rm svnignore.txt
or line by line
svn st | awk '/^?/{print $2}' > svnignore.txt
svn propget svn:ignore >> svnignore.txt
svn propset svn:ignore -F svnignore.txt .
rm svnignore.txt
What it does:
Also, if you use Tortoise SVN you can do this:
A more readable version of bkbilly's answer:
svn st | awk '/^?/{print $2}' > svnignore.txt
svn propget svn:ignore >> svnignore.txt
svn propset svn:ignore -F svnignore.txt .
rm svnignore.txt
What it does:
What worked for me (I am using TortoiseSVN v1.13.1):
1.In File Explorer, right-click on SVN project folder-name
2.Click on "SVN Commit..."
3.A "commit" window will appear
4.Right-click on the folder/file that you want to ignore
5.Click on "Add to ignore list"
6.Select the folder/file name you want to ignore
7.Commit the "property change" to SVN
After Step 3 above, click on "Show unversioned files" as follows:
svn status
will tell you which files are not in SVN, as well as what's changed.
Look at the SVN properties for the ignore property.
For all things SVN, the Red Book is required reading.
Adding a directory to subversion, and ignoring the directory contents
svn propset svn:ignore '\*.*' .
or
svn propset svn:ignore '*' .
Use the command svn status on your working copy to show the status of files, files that are not yet under version control (and not ignored) will have a question mark next to them.
As for ignoring files you need to edit the svn:ignore property, read the chapter Ignoring Unversioned Items in the svnbook at http://svnbook.red-bean.com/en/1.5/svn.advanced.props.special.ignore.html. The book also describes more about using svn status.
SVN ignore
is easy to manage in TortoiseSVN. Open TortoiseSVN and right-click on file menu then select Add to ignore list.
This will add the files in the svn:ignore
property.
When we checking in the files then those file which is matched with svn:ignore
that will be ignored and will not commit.
In Visual Studio project we have added following files to ignore:
bin obj
*.exe
*.dll
*.pdb
*.suo
We are managing source code on SVN of Comparetrap using this method successfully