如何更改用于访问 git 帮助页面的浏览器?



问题是,每当我尝试使用 git 帮助页面时,它都会向我显示以下错误:

Suyash@BaazWorkstation MINGW64 ~/Desktop/Git (master)
$ git help log
/usr/bin/start: line 8: cmd: command not found
fatal: 'web--browse' appears to be a git command, but we were not
able to execute it. Maybe git-web--browse is broken?

我试过命令

Suyash@BaazWorkstation MINGW64 ~/Desktop/Git (master)
$ git config --global web.browser chrome

以前,但没有效果,也尝试使用google-chrome代替chrome但也不起作用。

请帮助解决问题。

这通常是一个PATH问题。

尝试CMD

  • 使用最新的 Git for Windows(在您想要的任何地方解压缩 Git 2.13PortableGit-2.13.2-64-bit.7z.exe,例如在C:Git2.13.2
  • (
  • 设置简化PATH

关于PATH问题,键入(在CMD中(:

set PATH=C:WINDOWSsystem32;C:WINDOWS;C:WINDOWSSystem32Wbem;C:WINDOWSSystem32WindowsPowerShellv1.0
set GH=C:Git2.13.2
set PATH=%GH%bin;%GH%usrbin;%GH%mingw64bin;%PATH%

然后键入"bash",然后在 bash 会话中,再次尝试git help log命令。

相关内容

  • 没有找到相关文章

最新更新