Erro após instalar o Git

1

Acabei de baixar o Git para o meu OS X 10.7.5

Quando eu digito:

which git

Eu recebo:

/usr/local/bin/git

Mas quando eu digito:

git --version

Eu recebo:

Illegal instruction: 4

Estou procurando conselhos sobre como proceder.

    
por user1551817 25.07.2016 / 17:51

1 resposta

0

Eu tive esse problema e consegui instalar uma versão funcional usando o 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
    
por 23.12.2017 / 18:46

Tags