I have a bunch of files that I normally want to ignore so I have the file extensions listed in my global ignore as well as on the folder properties ignore list. However, I h
Why don't you use the --no-ignore flag while doing svn add ?
--no-ignore
svn add
--no-ignore : disregard default and svn:ignore property ignores
Try doing something like:
svn add --force --no-ignore .
Note that you have to careful about what files get added.