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
|
||||
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="\
|
||||
|
|
Loading…
Reference in a new issue