Skip to content

Instantly share code, notes, and snippets.

@tru2dagame
Last active March 17, 2023 12:55
Show Gist options
  • Save tru2dagame/6f18c3dbc3f02b18a25a to your computer and use it in GitHub Desktop.
Save tru2dagame/6f18c3dbc3f02b18a25a to your computer and use it in GitHub Desktop.
git update-index --assume-unchanged

Ignore the file that Git has tracked already

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

Show all the files that you have assumed before in case you forgot them

git ls-files -v | grep h\ 

It will show:

h .gitignore
h config.php

Then you can do the no assume if you want to commit the files again

git update-index --no-assume-unchanged <FileName>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment