1

I'm running GitHub Desktop for Windows (Version 2.8.2 x64) on my Windows 7 machine.

How can I tell if git (i.e., the command line tool that manages git repositories) is installed on my Windows machine? If so, How can I tell which version of git I have?

Andrew
  • 1,499
  • 9
  • 25
  • 37

1 Answers1

3

Open command prompt and run

git --version

If git is still shown as an unidentified command, try adding it to the PATH variable

Tushar Shahi
  • 16,452
  • 1
  • 18
  • 39