Possible Duplicate:
Git not found after installing OS X Lion

I just upgraded my mac to LION, and now git is gone:

$ git
-bash: git: command not found

Any ideas on how to get git back?

link|improve this question

70% accept rate
1  
Well, where was it? How did you install it originally? Is the directory where it was still in your PATH? – Greg Hewgill Jul 24 '11 at 22:04
2  
Here exactly the same question apple.stackexchange.com/questions/18470/… – jamapag Jul 24 '11 at 22:07
1  
You closed it yet it's exactly on topic based on the link you posted in the closed notice: "software tools commonly used by programmers". – Oscar Godson Jul 28 '11 at 19:16
feedback

closed as exact duplicate by Sam Saffron Aug 18 '11 at 7:34

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

6 Answers

up vote 69 down vote accepted

The default install location is /usr/local so add this to your ~/.bash_profile

export PATH=$PATH:/usr/local/git/bin/

then run source ~/.bash_profile in Terminal

link|improve this answer
I am fairly new to programming and I understand you have to add PATH=/usr/local/git/bin:$PATH to your ~/.bash_profile but I can't seem to find (or access .bash_profile). I tried typing ~/.bash_profile in Terminal but got "Permission denied." I don't otherwise know how to access the .bash_profile (I tried using sudo but it's either not possible or I'm using the wrong sudo commands). I would greatly appreciate help in updating/accessing ~/.bash_profile – mmichael Aug 9 '11 at 17:54
2  
touch ~/.bash_profile – Chris Ledet Aug 9 '11 at 18:02
Figured it out...since the file was locked I couldn't open it through Terminal so I had to make my hidden files visible then manually open .bash_profile in Finder and add the line of code to make it work. Thanks for the answer! – mmichael Aug 9 '11 at 18:18
Git does not ship with the base OS X Lion install, you need to install X Code, not all of it if you don't want it, of course. See the helpful note below. – Dmitri Sep 10 '11 at 20:12
2  
on some systems (eg. mine) ~/.bash_profile might be just ~/.profile – kritzikratzi Sep 12 '11 at 21:14
show 2 more comments
feedback

If you do not want to install XCode and/or ports/fink/homebrew, you could always use the standalone installer: http://code.google.com/p/git-osx-installer/

link|improve this answer
2  
They didn't have a version for Lion but I used the latest for Snow Leopard and it installed it at /usr/local/git/bin/git. So far so good. :) – milesmeow Feb 18 at 16:55
That was perfect. Thanks for the tip @milesmeow ! – MRocklin Apr 24 at 1:18
feedback

It's part of Xcode. You'll need to reinstall the developer tools.

link|improve this answer
1  
Not true, don't need all of xcode just for git – Roy Truelove Aug 27 '11 at 20:34
2  
Thanks! I naively thought it shipped with the base install. – Dmitri Sep 10 '11 at 20:13
feedback

There are a couple of points to this answer.

Firstly, you don't need to install Xcode. The Git installer works perfectly well. However, if you want to use Git from within Xcode - it expects to find an installation under /usr/local/bin. If you have your own Git installed elsewhere - I've got a script that fixes this.

Second is to do with the path. My Git path used to be kept under /etc/paths.d/ However, a Lion install overwrites the contents of this folder and the /etc/paths file as well. That's what happened to me and I got the same error. Recreating the path file fixed the problem.

link|improve this answer
1  
After upgrading to Lion, you can download XCode 4.1 for free from the Mac App Store and it fixes this as well. – mattmc3 Jul 25 '11 at 17:06
@mattmc3 - that's because Xcode installs Git. – Abizern Jul 25 '11 at 17:27
Yes, I assumed that was obvious, but good clarification b/c it might not be to some. – mattmc3 Jul 26 '11 at 0:19
3  
With Xcode 4.3 under Lion, I find git $not$ at /usr/local/bin but rather at /Applications/Xcode.app/Contents/Developer/usr/bin. – murray Mar 17 at 20:09
feedback

you have to find where git is and then add the folder to the PATH variables in .bash_profile.

Using terminal:

1) search for git:

sudo find / git | grep git

2) edit the .bash_profile add

PATH="<DIRECTORY OF GIT>:$PATH"

Git is back :-)

Anyway i suggest you to install git using macports, in this way you can easilly upgrade your git to the newest release

Hope this helps

link|improve this answer
feedback

You can always use port

link|improve this answer
1  
You'll need to install the developer tools to use either of these, and Xcode 4.x comes with git already. – jarjar Jul 24 '11 at 22:12
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.