Skip to content

Instantly share code, notes, and snippets.

@leshill
Created March 23, 2011 04:41
Show Gist options
  • Save leshill/882626 to your computer and use it in GitHub Desktop.
Save leshill/882626 to your computer and use it in GitHub Desktop.
Using brew? Want git tab completion in bash? Add to your .bashrc (or .bashrc.local)
git_completion=`brew --prefix git`/etc/bash_completion.d/git-completion.bash
if [ -f $git_completion ] ; then source $git_completion; fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment