gp
This commit is contained in:
parent
c41c49c30d
commit
8a99b9e1b7
1 changed files with 19 additions and 3 deletions
|
@ -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="\
|
||||||
|
|
Loading…
Reference in a new issue