Recursively ignoring files in the entire source tree in subversion

SvnTortoisesvnVersion Control

Svn Problem Overview


I am not new to Subversion, but I have up till now used Tortoise and never the commadn line. My question is, how do I ignore all files like *.o from the ENTIRE source not just the root.

For example, if I have the following files: /myfile.o /folder1/myfile2.o /folder1/folder1.1/myfile3.o /folder2/myfile4.o

If svn propedit svn:ignore "." in the root directory, and add *.o, it will ignore the myfile.o, but does not ignore /folder1/myfile2.o, /folder1/folder1.1/myfile3.o, /folder2/myfile4.o. Is there a way to add *.o in for an entire project (I cannot do it for the entire repository, which I know can be done, because this project is in a repository with many other projects)?

Please let me know if I need to clarify. Thanks!

Svn Solutions


Solution 1 - Svn

Edit

The original answer provided below was given prior to Subversion v1.8 which introduced a way to set the default repository level ignore (called svn:global-ignores) without overriding/replacing the svn:ignore property on the root directory and every single subdirectory. Since 1.8, the best way to achieve what you would like is to invoke the following command (credit goes to TManhente):

svn propset svn:global-ignores '*.o' .

On earlier versions (and on later versions), you can still use the approach indicated in the original answer below; however, be aware that this assumes that you are okay with replacing/overwriting the svn:ignore property on each and every subdirectory... this may be fine for a smallish/newish repository but is probably not what you want if you have a large/old repository in which some subdirectories may have independent svn:ignore properties that you do not wish to overwrite.

Original answer

You can use the "-R" or "--recursive" option with "svn propset" as in the following command:

svn propset svn:ignore '*.o' . --recursive

More info

For both cases, you can use the following command for more info about svn propset:

svn help propset

Solution 2 - Svn

Just an update: Subversion 1.8.0 introduced Inherited Properties and Repository Dictated Configuration (For auto-props and ignores), which can also be used in this case.

You can set the new svn:global-ignores property in the root path. It will "only effect the subtrees rooted at the path on which the property is set".

This new property is set just like svn:ignore:

    svn propset svn:global-ignores '*.o' .

More information is available at the Subversion 1.8.0 Release Notes.

Solution 3 - Svn

As pointed by @hackmaster.a in a comment, the example given in the accepted answer has the side effect of wiping out all previous svn:ignore settings. Using propedit instead of propset doesn't work neither.

The right way to add multiple files recursively is putting their names in a list separated by new lines in the svn:ignore property set with svn propset svn:ignore "[LIST]" .

For example:

    svn propset svn:ignore -R "*.pkl
    > *.class
    > Thumbs.db
    > data.tmp" .

Of course the >'s are just the shell prompts.

This command will change the svn:ignore properties of the . current directory and of each of its sub-folders recursively.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionalanquillinView Question on Stackoverflow
Solution 1 - SvnMichael Aaron SafyanView Answer on Stackoverflow
Solution 2 - SvnTManhenteView Answer on Stackoverflow
Solution 3 - SvnSaul BerardoView Answer on Stackoverflow