If you are using git on daily basis, you probably want to create some shorthands, aka. aliases, to save time.
The very first option that is documented in tutorials and books about git is through git configuration.
$ vi ~/.gitconig
[alias]
st = status
co = checkout
br = branch
up = rebase
ci = commit