GitExtensions 配置错误
我安装 GitExtensions 的主要目的是在 Visual Studio 2010 中使用 GitHub。当我启动 GitExtensions 时,我的清单中出现 2 个错误,还有一个启动错误,内容如下: 访问路径“c:\program files(x86)\GitExtensions\.gitconfig”被拒绝
。
该目录中没有 .gitconfig 文件。它不允许我设置所需的信息,例如我的姓名和电子邮件。我能做些什么来解决这个问题吗?
I installed GitExtensions for the main purpose of using GitHub with my visual studio 2010. When I start up GitExtensions, I get 2 errors in my checklist and also a startup error that says:Access to path 'c:\program files(x86)\GitExtensions\.gitconfig' is denied
.
There is no .gitconfig file in that directory. It wont allow me to setup the needed information such as my name and email. Is there anything I can do to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它不应该在那里寻找 .gitconfig 。
它应该位于
C:\users\username\.gitconfig
中,确保您有如下设置:It shouldn't be looking for .gitconfig there.
It should be in
C:\users\username\.gitconfig
Make sure you have setting like below:这可能是由最新版本的 Git 扩展中的一个已知错误引起的。该错误已经修复,但新版本尚未发布。您可以在此处下载最新的候选版本:
http://code.google.com/p/gitextensions/downloads /detail?name=GitExtensions222SetupComplete.msi
您还可以通过手动将 .gitconfig 从 c:\program files\gitextensions.gitconfig 移动到 c:\users\username.gitconfig 来解决此问题。 GitExtensions 将检测新位置并使用它。
This is probably caused by a known bug in the latest version of Git Extensions. The bug is fixed already but the new version is not released yet. You can download the latest release candidate here:
http://code.google.com/p/gitextensions/downloads/detail?name=GitExtensions222SetupComplete.msi
You could also fix this by moving .gitconfig from c:\program files\gitextensions.gitconfig to c:\users\username.gitconfig manually. GitExtensions will detect the new location and will use it.