我必须能够在两个上下文中执行Git命令:
除了推送/拉取操作之外,一切都很完美,其中存在凭证助手问题。使用helper = !github –credentials
中使用etc/.gitconfig
的默认GitHub设置,远程操作适用于上下文1但不适用于上下文2(每次都要求凭据)。如果我将helper = wincred
添加到user/.gitconfig
,那么上下文1工作正常,上下文2工作正常,尽管它首先抱怨:
github --credentials get: github: command not found
github --credentials store: github: command not found
(我认为它会抱怨,因为它试图使用GitHub帮助程序,但不能在上下文2中)但是然后继续执行推送:
Counting objects: 11, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (5/5), 467 bytes | 0 bytes/s, done.
Total 5 (delta 1), reused 0 (delta 0)
...
我可以接受投诉,但问题是每当启动GitHub for Windows时,它都会从helper = wincred
中删除user/.gitconfig
。
问题是:我可以
答案 0 :(得分:14)
我有类似的问题,并联系了GitHub支持并得到了这个回复:
你要点击的是GitHub的配置清理程序 Windows在启动时运行。我们过去曾见过重大问题 与其他Git客户端添加无效/错误的配置值 这个文件给用户带来了不好的体验 - 所以我们不得不采取措施 缓解这些问题。
这是选择加入,您可以通过运行以下操作来绕过此选项 命令:
git config --global ghfw.disableverification true
这解决了我的问题