This article documents my favourite shell aliases. I frequently refer back to this document if I happen to forget some of these beauties.
Table of contents
Git
Command | Alias |
---|---|
General | |
git status | gst |
git log --oneline --decorate | glo |
Branches and checkouts | |
git checkout | gco |
git checkout -b | gcb |
git checkout master | gcbm |
Push | |
git push | gp |
Rebase | |
git rebase | grb |
git rebase master | grbm |
git rebase -i | grbi |
Terraform
Command | Alias |
---|---|
terraform | tf |
terraform workspace | tfw |