Created
January 30, 2014 14:58
-
-
Save eightbitraptor/8710249 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Autocomplete the list of authors configured in your Git Pair authors list | |
PAIRS=( $(git pair authors 2>&1 | awk '{print $NF}' | sed -e 's/authors//' | xargs echo -n) ) | |
unset PAIRS[0] | |
complete -o default -W "${PAIRS[*]}" git pair |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment