Recursively ignoring files in the entire source tree in subversion

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

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.


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.