.gitignore文件不起作用解决方法
想要.gitignore起作用,必须要在这些文件不在暂存区中才可以,.gitignore文件只是忽略没有被staged(cached)文件,对于已经被staged文件,加入ignore文件时一定要先从staged移除,才可以忽略。
执行 如下命令:
git rm -r --cached .
git add .
git commit -m 'update .gitignore'
想要.gitignore起作用,必须要在这些文件不在暂存区中才可以,.gitignore文件只是忽略没有被staged(cached)文件,对于已经被staged文件,加入ignore文件时一定要先从staged移除,才可以忽略。
执行 如下命令:
git rm -r --cached .
git add .
git commit -m 'update .gitignore'
本文标题:.gitignore不起作用解决方法
本文链接:https://www.haomeiwen.com/subject/mrdogftx.html
网友评论