What if the .gitignore file modified by git does not take effect?
This article mainly shows you the "git modification .gitignore file does not take effect what to do", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "git modification .gitignore file does not take effect what to do" this article.
problem
The git modification of the .gitignore file does not take effect, and the files you want to ignore can never be ignored.
Reason
The reason is that .gitignore can only ignore files that were not originally track, and if some files have been included in version management, modifying .gitignore is invalid. The solution is to delete the local cache (change it to a non-track state) and then commit it.
Solve
Delete the local cache and change the files or folders that do not want to be versioned to an untrack state.
Cancel the version management of folders: git rm-- cached-r folder name
Cancel the version management of the folder: git rm-- cached file name
Modify the .gitignore file, modify the ignore rule
Add change git add-A
Commit changes to git commit-m'update .gitignore'
The above is all the contents of the article "what if the git modification .gitignore file does not take effect". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!