We have set up our .gitignore
file to ignore
- all files ending in
*.sdf
- as well as the full path to the file, e.g.
/MyProject/Database/MyDatabase.sdf
with/
being the project's root (top-level directory checked into git) to specifically ignore that one file
but the file keeps coming back as it is checked in by various members of the team.
Any ideas how to really exclude the .sdf
file for good?
We can't quite grasp why it keeps popping up in the modified files for everybody..