我已经安装了Git for Windows,但是当我尝试在命令提示符中使用Git命令时,我得到以下错误:

'git' is not recognized as an internal or external command,
operable program or batch file. 

我如何解决这个问题?


当前回答

避免搅乱PATH变量的简单方法:重新安装git并选择“从Windows命令提示符使用git”。如前所述,它将为您使用PATH变量。看到截图

其他回答

确保正确的git路径添加到路径变量 环境变量。例如- C:\Program Files C:\Program Files (x86)\Git\cmd。它可以是不同的 具体情况取决于安装git的位置。 如果它不工作,尝试重新启动命令提示符,使其读取 更新的环境变量。 如果它仍然不工作,尝试重新启动你的机器强制命令 提示读取更新的环境变量。

开始->所有程序->Git->Git Bash

带你直接到Git Shell。

检查Bit Locker是否已启用!我遇到了类似的问题,我的GIT在cmd中工作正常。但是在快速重启后,它不起作用,我得到了如上所述的错误。

所以我必须解锁比特锁,因为我已经在硬盘卷(:E)中安装了GIT,这是由比特锁加密的。

如果你使用的是Windows 10,请这样做:

Go to Start Start typing 'This PC' Right-click This PC, choose Properties On the left side of the window that pops up, click on Advanced System Settings Click on the Advanced tab Click on the Environmental Variables button at the bottom Down in the System Variables section, double-click Path Click the New button in the top right corner Add this path: C:\Program Files\Git\bin\ then click the enter key Add another path: C:\Program Files\Git\cmd Close & re-open the console if it's already open.

我带你经历了漫长的过程,让你接触到不同的Windows/菜单。祝你好运。

只是想补充一下阿比森的答案。 如果任何人使用非管理员帐户,您可以创建一个“本地”变量,而不是允许访问标准/有限帐户的“系统”变量。 在“环境变量”窗口中: 1)在“User variables for…”部分选择“New…”按钮。 2)将“变量名称:”设置为“path”,将“变量值:”设置为“[your-git-path]”(通常在C:\Program Files (x86)\Git\ bin中找到)。 3)单击“确定”。