Git is always setting to assume-unchanged
all the files from two of my repository. After each commit
, checkout
, pull
, and so on, it set assume-unchanged
on the modified files. I have to execute git update-index --no-assume-unchanged my_file
to commit
and push
my modifications.
How can I prevent this behaviour?