Windows – Git: Command not found Windows

cygwin;gitwindows

I have downloaded and installed GIT from http://git-scm.com/download/win

For some reason, in Cygwin and in Command prompt (Windows 8), the git command is not found.

I selected the option for Windows explorer integration and the "GIT GUI/ repo here" option appears when I right click in file explorer.

Can anyone explain why typing "git -v" or "git –version" gives a "command not found"?

Best Answer

You need to have C:\Program Files\Git\cmd in your path. Make sure it is there, start a new cmd prompt, type git --version.

Related Question