diff --git a/lib/shared/modules/zsh/abbreviations.zsh b/lib/shared/modules/zsh/abbreviations.zsh
index 2146273a..e2d13e50 100644
--- a/lib/shared/modules/zsh/abbreviations.zsh
+++ b/lib/shared/modules/zsh/abbreviations.zsh
@@ -19,7 +19,9 @@ abbr gap="git add -p"
 abbr gc="git commit"
 abbr gca="git commit --amend"
 abbr gcan="git commit --amend --no-edit"
+abbr gcl="git clone"
 abbr gcm="git commit -m"
+abbr gco="git checkout"
 abbr gd="git diff"
 abbr gf="git fetch"
 abbr gfa="git fetch --all"
@@ -29,10 +31,12 @@ abbr gls="git log --stat"
 abbr gpl="git pull"
 abbr gplr="git pull --rebase"
 abbr gps="git push"
+abbr gr="git rebase"
 abbr gri="git rebase -i"
 abbr gs="git status"
 abbr gsh="git show"
-abbr gst="git status"
+abbr gst="git stash"
+abbr gstp="git stash pop"
 
 # tmux
 abbr ta="tmux attach"