Git Temporarily Ignore Changes To Tracked File

[Solved] Git Temporarily Ignore Changes To Tracked File | Shell - Code Explorer | yomemimo.com
Question : git temporarily ignore changes to tracked file

Answered by : light-louse-j1rlwr5c1x67

# start ignoring changes to a file:
git update-index --assume-unchanged path/to/file
# keep tracking again:
git update-index --no-assume-unchanged path/to/file

Source : https://stackoverflow.com/questions/13442130/git-temporarily-ignore-trivial-changes-to-files | Last Update : Wed, 18 Nov 20

Answers related to git temporarily ignore changes to tracked file

Code Explorer Popular Question For Shell