89

What is the terminal command to find the version of Git currently installed on my system?

0

1 Answer 1

109

Yeah, simple - git --version (holds true for most applications)


If you get -bash: git: command not found when you run git --version it means git is not installed or it is not on PATH.

  1. Make sure git is installed.

    • Git is usually installed at /usr/local/git/
    • Make sure there is a binary file where you installed git. If not, install git.
  2. If git is installed, then it is mostly likely not on PATH

    • Find the path where you installed it and do something like this to add it to the path and set in your profile:

      echo 'export PATH=/usr/local/git/bin:$PATH' >> ~/.profile

    • Then make sure you restart terminal before trying to run any git commands

8
  • Ok, thats what I thought. When I try that I get "-bash: git: command not found" I know git is installed. Been using it for some time now. I am in my users directory if that matters.
    – zechdc
    Commented Oct 18, 2011 at 3:38
  • @zechdc - If you get command not found, either it is not installed, or it is not on PATH.
    – manojlds
    Commented Oct 18, 2011 at 3:44
  • @Radu It is installed. At least I believe it is installed. I just committed something using Tower App.
    – zechdc
    Commented Oct 18, 2011 at 3:44
  • @zechdc - Find where you installed and do something like echo 'export PATH=/usr/local/git/bin:$PATH' >> ~/.profile
    – manojlds
    Commented Oct 18, 2011 at 3:48
  • @manojlds Ok, it looks like git is installed at /usr/local/git. I ran that command and it created a file called .profile in my user directory. Still can't run git --version Is there more to it than just run that command? I am kinda a terminal newb. :)
    – zechdc
    Commented Oct 18, 2011 at 4:02

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .