在 Windows 7 上摆脱 git gui 的 cmd-windows
每次我启动 git gui 时,都会简要显示每个未暂存文件的 cmd 窗口。当我单击文件或取消暂存文件时也会发生这种情况。在 Win XP 上不会发生这种情况。
有谁知道如何摆脱这些cmd窗口?
Each time I start git gui a cmd-window is briefly shown for each of the unstaged files. This also happens when I click on a file or unstage it. This doesn't happen on Win XP.
Does anyone know how to get rid of these cmd-windows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Windows 7 上我从未发生过这种情况。我认为您使用的是 git.cmd 包装器而不是 git.exe (因为 msysgit 中的 git 和 mingw 二进制文件可能不在您的路径上)
您可以尝试添加
C:\ Program Files (x86)\Git\bin
或者您将 msysgit 安装到路径中的任何位置并调用git gui
看看?或者甚至显式调用 git.exe gui ?This never happened for me on Windows 7. I think you are using the git.cmd wrapper rather than git.exe ( since the git and mingw binaries in msysgit may not be on your path)
Can you try adding
C:\Program Files (x86)\Git\bin
or wherever you installed msysgit to the path and callgit gui
and see? Or even explicitly callgit.exe gui
?