问题在于,每当我尝试使用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
,但它也不起作用。
请帮助解决问题。
答案 0 :(得分:0)
这通常是PATH
问题。
尝试使用CMD
:
PortableGit-2.13.2-64-bit.7z.exe
,例如C:\Git2.13.2
)PATH
。关于PATH
问题,请键入(在CMD
中):
set PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\
set GH=C:\Git2.13.2
set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH%
然后输入“bash
”,然后在bash会话中再次尝试git help log
命令。