I am converting a svn repo to a git repo and we have a number of binary files that have been checked in over the years that shouldn't have, along with images and other files, I don't really want these files present in the git repo taking up space.
I have played around with git-svn to convert the repo and have used its -ignorepaths property but I'd like to be able to feed a list into the ignore paths rather than having to specify a ignorepaths for each pattern/directory I want to exclude, if I could use a svnignore/gitignore file during the conversion that would take out this junk that would be even better.
Is there a way to do this or do I just have to bit the bullet and specify each pattern/path individually?
EDIT: updated question to be more clear as to what I was asking