我的 gitignore 文件如下所示:
*.csv
*.dat
*.iml
*.log
*.out
*.pid
*.seed
*.sublime-*
*.swo
*.swp
*.tgz
*.xml
.DS_Store
.idea
.project
.strong-pm
coverage
node_modules
npm-debug.log
server-info
definitions/
然而,突然git status
向我展示了很多红色的 npm-debug.log 文件。
我也收到消息
没有添加到提交但存在未跟踪的文件(使用“git add”来跟踪)
如何在不意外删除任何重要文件的情况下从本地计算机中删除所有 npm-debug.log 文件?
另外,我如何防止这些文件首先被创建?