Skip to content

Instantly share code, notes, and snippets.

View kevinchar93's full-sized avatar

Kevin Charles kevinchar93

  • AND Digital
  • Yorkshire
View GitHub Profile
@kevinchar93
kevinchar93 / kevinchar93-git-aliases
Last active April 19, 2018 14:43
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
;