📌  相关文章
📜  删除 gitignore 文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:10.581000             🧑  作者: Mango

代码示例6
git ls-files --ignored --exclude-standard -z | xargs -0 git rm --cached
git commit -am "Remove ignored files"


// answer from: thSoft