This commit is contained in:
Marc Beninca 2023-05-14 18:53:19 +02:00
parent c41c49c30d
commit 8a99b9e1b7

View file

@ -173,13 +173,29 @@ alias gms='git merge --squash'
alias gmt='git mergetool' alias gmt='git mergetool'
# push to the remote repository # push to the remote repository
alias gp='git push --tags --verbose' alias gp="\
git \
push \
--verbose \
--tags \
"
# delete from the remote repository # delete from the remote repository
alias gpd='git push --delete --verbose' alias gpd="\
git \
push \
--verbose \
--delete \
"
# force the push to the remote repository # 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 # rebase current branch onto another
alias grb="\ alias grb="\