From 8a99b9e1b7b69c992a40a2f46f7884c816b71c42 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 14 May 2023 18:53:19 +0200 Subject: [PATCH] gp --- bash/alias/git.sh | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/bash/alias/git.sh b/bash/alias/git.sh index 1498ef1..9065dcd 100644 --- a/bash/alias/git.sh +++ b/bash/alias/git.sh @@ -173,13 +173,29 @@ alias gms='git merge --squash' alias gmt='git mergetool' # push to the remote repository -alias gp='git push --tags --verbose' +alias gp="\ +git \ +push \ +--verbose \ +--tags \ +" # delete from the remote repository -alias gpd='git push --delete --verbose' +alias gpd="\ +git \ +push \ +--verbose \ +--delete \ +" # force the push to the remote repository -alias gpf='git push --tags --verbose --force' +alias gpf="\ +git \ +push \ +--verbose \ +--tags \ +--force \ +" # rebase current branch onto another alias grb="\