Is there a way to setup a global list of Ignores for a SVN Repository or for the SVN Client on the PC?
The only reason I'm using tools like Tortoise/Ankh/VisualSVN is because I want to only check in the files I need without all the bin/obj/Resharper stuff.
I'm spoiled by .gitignore
and .hgignore
which I just copy to a repository and then use git commit -a
without having to care about checking in junk.
I know I can manually set it, but that's tedious to do and I think it had to be applied to every new folder that gets created as well.
Using SVN under Windows.
svn propset svn:ignore "*.myextension" .
command? – Candlenutsvn propset --recursive svn:ignore "*.myextension" .
. However, such ignore will not apply for new folders which are created afterwards. Usesvn:global-ignores
for general ignore. – Appal