我已经阅读了其他问题 git ignore files 的解决方案,但我仍然无法让它工作。
所以这就是我所做的:
- 创建的
.gitignore_global
文件。 - 添加
.mp3 .mp4 .oog .wmv .wma
然后保存。 - 执行了这个命令:
git config --global core.excludesfile .gitignore_global
但是当我提交时,它仍然会添加我的 mp3 文件。git rm -r --cached .
然后我什至尝试git add .
清除缓存,但即使在那之后它仍然将其添加回来。我在这里想念什么?