vaiwa
4/25/2015 - 6:55 PM

git temporary ignore changes

git temporary ignore changes

Temporary Ignore Changes

To temporarily ignore changes in a certain file, run:

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

Then when you want to track changes again:

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