Reputation: 15006
I want to ignore a file containing database-passwords and such. I asked a friend who set up the git if I could us gitignore. He said "no, because there is already a file with dummy data in the repository, there is another function that you should use, I don't remember what it's called, google it!"
I tried googleing, but given the information it's pretty tricky, does anyone know what function he is talking about?
Upvotes: 9
Views: 4541
Reputation: 2077
If you want to ignore files that are already tracked, use this:
git update-index --assume-unchanged <filePath>
Upvotes: 1
Reputation: 341
If you add the file to .git/info/exclude - it will ignored, and this exclude file is local to your repository and will not be available to others.
Upvotes: 16
Reputation: 13737
Here's an alternative to gitignore:
Ignore the .gitignore file itself
Upvotes: 2
Reputation: 1324937
You should use a gitattribute filter driver
That way:
Upvotes: 10