If you need to ignore multiple folders in svn an easy way to do it is with:
svn propedit svn:ignore .
If you receive the below message:
None of the environment variables SVN_EDITOR, VISUAL or EDITOR are set
Try this:
vi ~/.bash_profile
and insert this line:
export SVN_EDITOR=vi
Note: This won’t work if the directory is already “in” svn. svn rm –keep-local dirname first.