Possible Duplicate:
Exclude .svn folders within git
How to include .svn directory in the file .gitignore ? (all the directories whose name contains dot or begins with dot)
Possible Duplicate:
Exclude .svn folders within git
How to include .svn directory in the file .gitignore ? (all the directories whose name contains dot or begins with dot)
Have a look at this question Exclude .svn folders within git:
I think you want to use a .gitignore file in your top-level directory. This will work if you put ".svn/entries" on a line in that file. You might just put ".svn" instead of ".svn/entries" as well.