我正在使用git来跟踪VS2010中的C++项目。我正在使用在stackoverflow上找到的忽略模式,这些模式通常不排除* .opensdf文件。不幸的是,当尝试提交文件时,出现以下错误:

error: open("foo.opensdf"): Permission denied
error: unable to index file foo.opensdf
fatal: adding files failed

为什么会出现此错误,如何避免?由于我是VS2010的新手,因此此文件的用途是什么?

谢谢!

凡人

最佳答案

* .opensdf是仅在将.vcxproj/.sln加载到Visual Studio IDE时打开的临时文件。应该将其添加到您的.gitignore文件中。

请参阅此问题的可接受答案:What should be contained in a global source code control ignore pattern for Visual Studio 2010?

09-04 03:02