📌  相关文章
📜  如何将文件放入 gitignore - Shell-Bash 代码示例

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

代码示例1
$ echo debug.log >> .gitignore
$ git rm --cached debug.log
rm 'debug.log'
$ git commit -m "Start ignoring debug.log"