Git Ignore Changes

Sometimes you have a committed file and you intentionally want to ignore changes to it.

git update-index --assume-unchanged [ ...]

And later return back to normal.

git update-index --no-assume-unchanged [ ...]