📌  相关文章
📜  git 从已添加到 gitignore 的 repo 中删除文件 - Shell-Bash 代码示例

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

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


// answer from: thSoft