Make gpf alias safer

This commit is contained in:
Ezinwa Okpoechi 2018-10-18 18:55:30 +02:00
parent 364d6b831d
commit 66ec201145
2 changed files with 4 additions and 2 deletions

View File

@ -118,7 +118,8 @@ Aliases
### Push
* `gp` updates remote refs along with associated objects.
* `gpf` forces a push.
* `gpf` forces a push safely (see --force-with-lease).
* `gpF` forces a push.
* `gpa` pushes all branches.
* `gpA` pushes all branches and tags.
* `gpt` pushes all tags.

View File

@ -111,7 +111,8 @@ alias gmt='git mergetool'
# Push (p)
alias gp='git push'
alias gpf='git push --force'
alias gpf='git push --force-with-lease'
alias gpF='git push --force'
alias gpa='git push --all'
alias gpA='git push --all && git push --tags'
alias gpt='git push --tags'