gp,gpd,gpf

This commit is contained in:
Marc Beninca 2024-11-17 02:31:52 +01:00
parent 235202a64d
commit 5780c0ed18
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -334,29 +334,28 @@ gmt() {
} }
# push to the remote repository # push to the remote repository
alias gp="\ gp() {
git \ git \
push \ push \
--verbose \
--tags \ --tags \
" --verbose \
"${@}"
}
# delete from the remote repository # delete from the remote repository
alias gpd="\ gpd() {
git \ git \
push \ push \
--verbose \
--delete \ --delete \
" "${@}"
}
# force the push to the remote repository # force the push to the remote repository
alias gpf="\ gpf() {
git \ gp \
push \
--verbose \
--tags \
--force \ --force \
" "${@}"
}
# rebase current branch onto another # rebase current branch onto another
alias grb="\ alias grb="\