Is there any way to make git completely ignore changes to certain local files? I know about .gitignore, but that doesn't work when the files I want to ignore were already added to the repository. A little more context should help you understand my need. I'm currently tracking a big subversion repository using git-svn; I do all my develop on local git branches, and later use git-svn dcommit to push these changes to the svn repository. There are some files in the svn repository (and by extension, on my local mirrored repository) that are almost always locally modified (eclipse/IDEA project files or generated artifacts that someone else added to svn), but I almost never want to commit then. This is a hassle in several situations: 1) git-status always show these files as modified, polluting the output and making it harder for me to pinpoint the "real" changes. 2) git-rebase refuses to run, since the working copy will always be dirty* 3) since git-svn dcommit uses git-rebase, sometimes it fails for the same reason. So, is there any way to make git look the other way regarding these files? * I usually get around this making a local commit with the local modifications, rebasing, and the using git-reset to revert the last commit. -- Pazu - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html