Last active
April 19, 2018 14:43
-
-
Save kevinchar93/c551f0112d31e471b0dace11a540bfc4 to your computer and use it in GitHub Desktop.
A list of usefule git aliases that can just be pasted into the shell for quick git setup
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
git config --global alias.tree 'log --graph --oneline --all --decorate' | |
git config --global alias.stree 'log --all --graph --decorate --oneline --simplify-by-decoration' | |
git config --global alias.co checkout | |
git config --global alias.br branch | |
git config --global alias.ci commit | |
git config --global alias.st status | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment