Meet svn propedit svn:ignore ...
#/> svn propedit svn:ignore build
#/> svn -m "ignoring build" commit build
When you run svn propedit, your local text editor will open (usually vi) which will allow you to specify a series of file names to ignore under build/. If you want to ignore all files and folders, just enter a single * wildcard character, save, and commit:
*
Or, maybe you want to ignore just .class files:
*.class
Of course, if you want to use another editor like emacs to set your ignore properties, you can do so by exporting SVN_EDITOR before running svn propedit:
#/> export SVN_EDITOR=emacs
Enjoy!


Did you find this post helpful, or at least, interesting?