zsh: add pull rebase alias

This commit is contained in:
saibotk 2023-06-16 01:41:23 +02:00
parent 0c5f290464
commit 097b451824
Signed by: saibotk
GPG key ID: 67585F0065E261D5

View file

@ -56,6 +56,7 @@ alias force="git push --force"
alias nuke="git clean -dxf && git reset --hard" alias nuke="git clean -dxf && git reset --hard"
alias pop="git stash pop" alias pop="git stash pop"
alias pull="git pull" alias pull="git pull"
alias repull="git pull --autostash --rebase"
alias push="git push" alias push="git push"
alias resolve="git add . && git commit --no-edit" alias resolve="git add . && git commit --no-edit"
alias stash="git stash -u" alias stash="git stash -u"