From ce9cf2ea833373d8e9774d8e2278374dcf5bb02c Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sun, 14 Jul 2024 10:38:24 +0100 Subject: [PATCH] Add `gpl` and `gps` abbreviations `gpl` expands to `git pull` and `gps` expands to `git push`. --- lib/shared/modules/zsh/abbreviations.zsh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/shared/modules/zsh/abbreviations.zsh b/lib/shared/modules/zsh/abbreviations.zsh index 20c33e5..2d1a9d9 100644 --- a/lib/shared/modules/zsh/abbreviations.zsh +++ b/lib/shared/modules/zsh/abbreviations.zsh @@ -9,6 +9,8 @@ abbr g="git" abbr ga="git add" abbr gap="git add -p" abbr gc="git commit" +abbr gpl="git pull" +abbr gps="git push" abbr gri="git rebase -i" abbr gs="git status"