Skip to content

Instantly share code, notes, and snippets.

@leshill
Created April 14, 2011 21:58
Show Gist options
  • Save leshill/920665 to your computer and use it in GitHub Desktop.
Save leshill/920665 to your computer and use it in GitHub Desktop.
Add this to the bottom of your .bashrc.local
# Git completion
git_completion=/usr/local/etc/bash_completion.d/git-completion.bash
if [ -f $git_completion ] ; then source $git_completion; fi
@therubymug
Copy link

I wonder if we'll even need the if statement going forward; since it'll always be symlinked.

source /usr/local/etc/bash_completion.d/git-completion.bash

@leshill
Copy link
Author

leshill commented Apr 16, 2011

Yea, that seems to be the case.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment