Web Development

/ 0评 / 0/ 最后更新:2021-12-08
.gitignore文件不生效?

需求场景

.config.local文件被推送到git仓库上,这时候在.gitigore文件里再加上.config.local就会不生效。

解决方案

git rm -r --cached .
git add .
git commit -m 'update .gitignore'
git push -u origin master

0

Leave a Reply

Your email address will not be published. Required fields are marked *