Shortcuts for git commands
git config --global alias.<short> <long>
e.g.
git config --global alias.cob "checkout -b"
(Without --global
, you get per-project aliases.)
Put this into your .gitconfig
[alias]
st = status
ci = commit
br = branch
co = checkout
You can add as much as you want