安装Git后出错

安装Git后出错

我刚刚为我的 OS X 10.7.5 下载了 Git

当我输入:

which git

我得到:

/usr/local/bin/git

但是当我输入:

git --version

我得到:

Illegal instruction: 4

我正在寻求有关如何进行的建议。

答案1

我遇到了这个问题,并且能够使用 Homebrew 安装一个可以工作的版本。

# first uninstall the broken version
# mount the DMG for the broken version using Finder
# "type" this with the tab key! it saves typing and fixes the version number
cd /Volumes/Git\ 2.0.1\ Snow\ Leopard\ Intel\ Universal/
./uninstall.sh
# make bash forget about the uninstalled binary
hash -r
cd

# now install the working version
# assumes you have Homebrew installed
brew install git
git version

相关内容