Add more Git abbreviations

This commit is contained in:
Oliver Davies 2024-11-09 21:24:11 +00:00
parent 0d4f919898
commit d8db48ddfe

View file

@ -23,6 +23,7 @@ abbr gcan="git commit --amend --no-edit"
abbr gcl="git clone"
abbr gcm="git commit -m"
abbr gco="git checkout"
abbr gcob="git checkout -b"
abbr gd="git diff"
abbr gds="git diff --staged"
abbr gf="git fetch"
@ -30,6 +31,9 @@ abbr gfa="git fetch --all"
abbr gl="git log"
abbr glo="git log --oneline"
abbr gls="git log --stat"
abbr gm="git merge"
abbr gmf="git merge --ff"
abbr gmnf="git merge --no-ff"
abbr gpl="git pull"
abbr gplr="git pull --rebase"
abbr gps="git push"
@ -39,6 +43,8 @@ abbr gpsap="git push acquia HEAD:production"
abbr gpso="git push origin"
abbr gpsom="git push origin main"
abbr gr="git rebase"
abbr gra="git rebase --abort"
abbr grc="git rebase --continue"
abbr gri="git rebase -i"
abbr gs="git status"
abbr gsh="git show"