Skip to content

Instantly share code, notes, and snippets.

@nczz
Created March 12, 2016 09:07
Show Gist options
  • Save nczz/0a3ed789f55dbe1e2f46 to your computer and use it in GitHub Desktop.
Save nczz/0a3ed789f55dbe1e2f46 to your computer and use it in GitHub Desktop.
Git AutoComplete Script
#!/bin/bash
curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
chmod +x ~/.git-completion.bash
. ~/.git-completion.bash
echo 'if [ -f ~/.git-completion.bash ]; then' >> ~/.bash_profile
echo ' . ~/.git-completion.bash' >> ~/.bash_profile
echo 'fi' >> ~/.bash_profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment