gp,gpd,gpf
This commit is contained in:
parent
235202a64d
commit
5780c0ed18
1 changed files with 18 additions and 19 deletions
|
@ -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="\
|
||||||
|
|
Loading…
Reference in a new issue