我正在使用git来跟踪VS2010中的C ++项目。我正在使用stackoverflow上发现的忽略模式,它通常不会排除* .opensdf文件。不幸的是,在尝试提交文件时,我收到以下错误:
error: open("foo.opensdf"): Permission denied
error: unable to index file foo.opensdf
fatal: adding files failed
为什么我会收到此错误以及如何避免错误?由于我是VS2010的新手,这个文件的用途是什么?
谢谢!
MORT
答案 0 :(得分:55)
*。opensdf是仅在.vcxproj / .sln加载到Visual Studio IDE时打开的临时文件。它应该添加到.gitignore文件中。
请参阅此问题的接受答案:What should be contained in a global source code control ignore pattern for Visual Studio 2010?