I was facing problems with folders, which should be ignored in the repository, but they were not even when I put it in .gitignore
, and I did several searches to solve the problem.
Among the many searches I've seen someone advising that in some cases it's best to use git update-index --assume-unchanged
than to use .gitignore
.
I'd like to know what the purpose of this command is. What is it for?
And, noting that it uses the argument --assume-unchanged
, are there any other arguments that can be used?