当前位置: 首页 > 工具软件 > Bash-Git > 使用案例 >

Git Bash - bash: git: command not found

黎同
2023-12-01

重新安装git后,使用git bash中的git命令时,可能会出现报错:

bash: git: command not found

在windows的命令行中运行git,一切正常。

查看PATH\usr\bin文件夹下,无git.exe。将PATH\bin\git.exe复制到上述路径后,在bash中运行git,报错BUG(fork bomb):PATH\bin\git.exe

解决思路:

1.添加环境变量,略

2.在bash中查看path

echo $PATH

没有出现KaTeX parse error: Undefined control sequence: \Git at position 5: PATH\̲G̲i̲t̲\bin或PATH\Git\cmd

3.编辑.bashrc

vim ~/.bashrc

在最下方添加

export PATH=$PATH:xxx/Git/bin:xxx/Git/cmd

其中xxx是Git的完整安装路径。例如笔者安装在C:\Program Files\Git,则添加

export PATH=$PATH:/c/Program\ Files/Git/bin:/c/Program\ Files/Git/cmd

重启Git Bash,问题解决。

 类似资料:

相关阅读

相关文章

相关问答