3
I was facing issues with folders, which should have been ignored in the repository, but they weren’t even when I put in .gitignore
, and I’ve done a lot of research to solve the problem.
Among several researches, I saw someone advising that, in some cases, it is better to use git update-index --assume-unchanged
than using the .gitignore
.
I would like to know what is the purpose of this command. What is it for?
And, noting that he uses the argument --assume-unchanged
, there are other arguments that can be used?