Merge pull request #1836 from diraol/dro/git_pull_autostash

[git] Add git pull autostash alias
This commit is contained in:
Srijan R Shetty 2020-05-29 11:56:04 +05:30 committed by GitHub
commit cb69d2d3e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -97,7 +97,9 @@ if ! zstyle -t ':prezto:module:git:alias' skip 'yes'; then
alias gfc='git clone'
alias gfcr='git clone --recurse-submodules'
alias gfm='git pull'
alias gfma='git pull --autostash'
alias gfr='git pull --rebase'
alias gfra='git pull --rebase --autostash'
# Flow (F)
alias gFi='git flow init'