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="\