From: Samir Benmendil Date: Tue, 12 Mar 2024 12:32:40 +0000 (+0000) Subject: zsh: gpo/gpfo aliases for git push origin (--force-with-lease) X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/ae5454a5465969e97d105b014960821899e3073f?ds=sidebyside zsh: gpo/gpfo aliases for git push origin (--force-with-lease) --- diff --git a/zsh/aliases/git.zsh b/zsh/aliases/git.zsh index 15e5df1..afb1671 100644 --- a/zsh/aliases/git.zsh +++ b/zsh/aliases/git.zsh @@ -9,6 +9,8 @@ alias gup='git pull --rebase' alias gp='git push' alias gpf='git push --force-with-lease' +alias gpo='gp origin' +alias gpfo='gpf origin' alias gd='git diff' alias gdc='git diff --cached'