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
alias gp="\
git \
push \
--verbose \
--tags \
"
gp() {
git \
push \
--tags \
--verbose \
"${@}"
}
# delete from the remote repository
alias gpd="\
git \
push \
--verbose \
--delete \
"
gpd() {
git \
push \
--delete \
"${@}"
}
# force the push to the remote repository
alias gpf="\
git \
push \
--verbose \
--tags \
--force \
"
gpf() {
gp \
--force \
"${@}"
}
# rebase current branch onto another
alias grb="\