SVN PROPSET SVN:IGNORE

Here is a helpful Subversion Command to set the svn keyword svn:ignore on all of the directories from a certain location.

svn propset svn:ignore '*' .

This has proven very helpful in situations where I have a web site that has a directory structure that is dynamic to the web application.

I do not want all of those files in version control as they are not the same from one deployment to the next.  They also typically match the database entries, which vary from one deployment to another.

Enjoy!