Last Updated: February 25, 2016
·
1.115K
· otobrglez

Ignoring changes in tracked files with GIT

Set "ignore" on file...

git update-index --assume-unchanged <file>

If you to start tracking changes again:

git update-index --no-assume-unchanged <file>