📌  相关文章
📜  取消跟踪文件夹 git - Shell-Bash 代码示例

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

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


// answer from: thSoft