I don\'t want any directory named build or dist to go into my SVN no matter how deep in the tree it is.
Is this possible? In git I just put
For example the folder structure:
Project/
Project/dist/
cd Project
svn propset svn:ignore '*' dist/
svn ci -m "content of dist ignored"
It's good to do a svn delete of dist content before the ignore command, so for branches dist will be empty.
Worked for me, tested today. Here is the page explaining it a bit