I need the assume-unchanged flag to avoid wrong commits of my project settings files. I do this via:
git update-index --assume-unchanged <file>
There is also a way to disable this with --no-assume-unchanged.
Now I added 5 files in this way and subsequently decided to add some of them again with the counter-flag.
Is there a way to list all these files declared as "assume-unchanged"?
Thanks a lot!