Ignore modified file from commit

Sometimes you need to change some files, just for your development environment and you don’t want to commit those changes. With Git there a way to fix your problem. First of all, made all the change you need in the file(s) to ignore then run this command: [cc_shell] $ git update-index –assume-unchanged path/to/the/file/to/ignore [/cc] and