Leão da montanha e conclusão do git

1

Eu tenho o ML com as ferramentas Xcode instaladas (git vindo de lá).

Mais tarde, instalei o brew e instale o bash-completion, mas os comandos do git ainda não foram concluídos automaticamente.

Brew não tem esse pacote. O Google não ajudou. Como posso ativar o suporte à conclusão do git no Mountain Lion?

    
por x00xer 17.09.2012 / 12:27

1 resposta

3

RESOLVIDO:

Encontrei a solução aqui: link e funciona bem.

I got that by using curl from the URL here:

curl https://raw.github.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash

Then I added to my ~/.bash_profile file the following "execute if it exists" code:

if [ -f ~/.git-completion.bash ]; then . ~/.git-completion.bash; fi

    
por 18.09.2012 / 11:34