Pergunta

in my ~/.bashrc, for git I have this alias

alias g='git'

how I can use the autocompletion of git with my alias g ?

Foi útil?

Solução

Add the following line to your .bashrc file:

complete -F XXX g

where XXX should be replaced by the value following -F in the output of the following command:

complete -p git

(It is likely, but not guaranteed, that this will be _git.)

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top