简体   繁体   中英

Git on Mac OS X v10.7 (Lion)

I just upgraded my Mac to Mac OS X v10.7 (Lion), and now Git is gone:

$ git
-bash: git: command not found

How can I get Git back?

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

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

Then run source ~/.bash_profile in Terminal.

如果您不想安装 Xcode 和/或MacPorts / Fink / Homebrew ,您可以随时使用独立安装程序: https : //sourceforge.net/projects/git-osx-installer/

You have to find where the Git executable is and then add the folder to the PATH environment variable in file .bash_profile .

Using terminal:

  1. Search for Git:

     sudo find / -name git
  2. Edit the .bash_profile file. Add:

     PATH="<Directory of Git>:$PATH"

Git is back :-)

Anyway, I suggest you to install Git using MacPorts . In this way you can easily upgrade your Git instance to the newest release.

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 Mac OS X v10.7 (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.

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

您可以随时使用MacPorts ...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM