I would like to use shortcuts or aliases for git commands.
git diff git status git push git pull git stash git branch -a
How do I create shor
Put this into your .gitconfig
.gitconfig
[alias] st = status ci = commit br = branch co = checkout
You can add as much as you want