diff --git a/modules/home-manager/zsh/abbreviations.zsh b/modules/home-manager/zsh/abbreviations.zsh index 761e6f5..6150bdf 100644 --- a/modules/home-manager/zsh/abbreviations.zsh +++ b/modules/home-manager/zsh/abbreviations.zsh @@ -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"