I previously used
git update-index --assume-unchanged <file>
to temporarily untrack some of my files in git. Now I want to list all the files that I did that for. How can this be done?
I previously used
git update-index --assume-unchanged <file>
to temporarily untrack some of my files in git. Now I want to list all the files that I did that for. How can this be done?
From the man page:
To see which files have the "assume unchanged" bit set, use
git ls-files -v
(see git-ls-files).