Software Development Tricks
Pages
Home
Google ads Horizontal
Wednesday, November 25, 2015
GIT HOW TO IGNORE CHANGED FILES (TEMPORARILY)
In order to ignore changed files to being listed as modified, you can use the following git command:
git update-index –assume-unchanged <file>
To revert that ignorance use the following command:
git update-index –no-assume-unchanged <file>
Newer Post
Older Post
Home