From 15e72a654d0c9e096adf002fe489b819c865f934 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Tue, 10 Feb 2026 08:36:54 +0100 Subject: [PATCH] feat(zsh): add git push origin alias gpo --- zsh/aliases.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/zsh/aliases.zsh b/zsh/aliases.zsh index c7bdeee..a98ecd1 100644 --- a/zsh/aliases.zsh +++ b/zsh/aliases.zsh @@ -24,6 +24,7 @@ alias accenton="defaults write -g ApplePressAndHoldEnabled -bool true" alias accentoff="defaults write -g ApplePressAndHoldEnabled -bool false" # git +alias gpo="git push origin" alias gros="git reset origin/$(git_current_branch) --soft" alias gcan="git commit -v --amend --no-edit" alias glogaa="git log --oneline --graph --all --pretty=format:\"%C(auto)%h %C(blue)(%aL/%cL)%C(auto)%(decorate) %s%Creset\""