windows 10 git shell gitignore和VC.db

时间:2016-11-09 17:43:06

标签: windows git shell

foo.vc.db文件呈现git不可用。我从中下载了一个gitignore文件 https://github.com/github/gitignore/blob/master/VisualStudio.gitignore。现在它似乎有正确的东西* .VC.db在那里,但是当我做git pull我看到git不会忽略我的foo.VC.db文件并且合并失败

1 个答案:

答案 0 :(得分:0)

如果你想要gitignore已经被git跟踪的文件,你需要先从git缓存中删除它们然后添加它们:

git rm --cached -r . && git add --all