Created
November 25, 2011 09:16
-
-
Save Holek/1393106 to your computer and use it in GitHub Desktop.
Git autocomplete for bash on a Mac script
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
curl https://raw.github.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash | |
echo "source ~/.git-completion.bash" >> ~/.bash_profile |
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
[alias] | |
co = checkout | |
ci = commit | |
rb = rebase | |
sync = !git pull --rebase && git push | |
com = !git add . && git commit -am |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I commented on your blog but thought I'd comment here too. You may need to update your url (see my fork). Thanks for the gist though!