Last Updated: February 25, 2016
·
759
· raeno

GIT: Ignore file changes for local copy only

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

if you want to track changes again:

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

from http://gitready.com/intermediate/2009/02/18/temporarily-ignoring-files.html