欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

gitignore: Problem: gitignore不起作用

程序员文章站 2022-07-14 12:03:32
...

Problem

gitignore 不起作用


Solution

git rm -r --cached .
git add .

[seems command below can be omitted, just use above two commands]
git commit -m 'update .gitignore'

https://www.cnblogs.com/sloong/p/5523244.html