Parece que você tem duas versões do git no seu computador:
- Versão 2.7.4 que foi instalada por
root
- Você não removeu a versão git 2.7.4
- Versão 2.9.5 que foi instalada localmente pelo seu usuário
- Você não atualizou seu caminho para usar o git 2.9.5 em vez do git 2.7.4
- Você não instalou o git como usuário
root
Para usar o git versão 2.9.5, você pode:
- Use o binário git recém-instalado:
- Encontre em seu diretório inicial, a localização do novo binário do git
- Atualize seu caminho para encontrar primeiro o git recém-instalado 2.9.5
- Instale o git como root (veja as informações tiradas do arquivo
INSTALL
emgit-2.17.0.tar.gz
package - por favor, revise o arquivoINSTALL
no diretório fonte do seu pacote para mais informações)
Git installation
Normally you can just do "make" followed by "make install", and that will install the git programs in your own ~/bin/ directory. If you want to do a global install, you can do
$ make prefix=/usr all doc info ;# as yourself # make prefix=/usr install install-doc install-html install-info ;# as root
(or prefix=/usr/local, of course). Just like any program suite that uses $prefix, the built results have some paths encoded, which are derived from $prefix, so "make all; make prefix=/usr install" would not work.
The beginning of the Makefile documents many variables that affect the way git is built. You can override them either from the command line, or in a config.mak file.
Alternatively you can use autoconf generated ./configure script to set up install paths (via config.mak.autogen), so you can write instead
$ make configure ;# as yourself $ ./configure --prefix=/usr ;# as yourself $ make all doc ;# as yourself # make install install-doc install-html;# as root