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

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

我如何解决这个问题?


当前回答

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

带你直接到Git Shell。

其他回答

我遇到了这个问题,当你安装git时,你必须选择正确的路径,我的意思是,它应该是你在git Bash中写git(代码)的相同路径…例如,如果您的路径是c:\Users\username,则必须将git安装在相同的路径(c:\Users\username)。这两条路径不应该不同

;C:\Program Files (x86)\Git\bin;C:\Program Files (x86)\Git\cmd

在环境变量中添加上述路径

注意:路径可能不同,但你应该同时添加bin和CMD

哟!我在这方面有很多问题。似乎Github带来了自己的控制台,你需要在你的驱动器中寻找。我最终通过以下方法运行了它:

按下开始键。 搜索“GitHub”(不带引号) 右键点击“GitHub”,选择“打开文件位置”

*这将打开*

C:\Users\UserName\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\GitHub, Inc

username是你电脑的用户名

找一个叫“Git Shell”的程序。双击它。

这将打开一个PowerShell命令提示符。然后你就可以在上面正常运行git命令了。

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

如果你使用的是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/菜单。祝你好运。