Last active
December 22, 2015 18:48
-
-
Save kbambz/6514927 to your computer and use it in GitHub Desktop.
Install Bash shell auto-completion for Git, as described by http://git-scm.com/book/en/Git-Basics-Tips-and-Tricks#Auto-Completion.
This file contains hidden or 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
| #!/bin/sh | |
| echo "$(curl https://raw.github.com/git/git/master/contrib/completion/git-completion.bash)" > ~/.git-completion.bash | |
| echo "source ~/.git-completion.bash" >> ~/.bashrc | |
| source ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment