Last active
October 27, 2016 11:18
-
-
Save miamarti/e825417b4fc49bd15c22 to your computer and use it in GitHub Desktop.
GitHub Config
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
git config core.fileMode false | |
git config --global alias.tree "log --graph --oneline --all --decorate" | |
git config --global alias.local "log @{u}.." | |
git config --global alias.update "fetch --progress origin" | |
git config --global credential.helper cache | |
git config --global alias.co checkout | |
git config --global alias.br branch | |
git config --global alias.ci commit | |
git config --global alias.st status | |
git config --global alias.last 'log -1 HEAD' | |
git config --global alias.visual '!gitk' | |
git config --global alias.h-1 'reset --soft HEAD~' | |
git config --global alias.reset-now 'reset --hard HEAD' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment