I have Git (version 1.7.2.5) bash compeletion working on my Debian squeeze (6.0). Git was installed with aptitude and I am using standard debian\'s bash, which supp
bash
You need to source /etc/bash_completion.d/git to enable git auto-completion.
source /etc/bash_completion.d/git
In my .bashrc it's done with:
.bashrc
for file in /etc/bash_completion.d/* ; do source "$file" done