Skip to content

Instantly share code, notes, and snippets.

@kevinchar93
Last active April 19, 2018 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinchar93/c551f0112d31e471b0dace11a540bfc4 to your computer and use it in GitHub Desktop.
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
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