Domanda

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

alias g='git'

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

È stato utile?

Soluzione

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.)

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top