feat(git): add `grf` alias (#12176)

master
Harkesh 2 years ago committed by GitHub
parent 4efad7ab1b
commit 6f215cd692
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      plugins/git/README.md
  2. 1
      plugins/git/git.plugin.zsh

@ -152,6 +152,7 @@ plugins=(... git)
| `grbd` | `git rebase $(git_develop_branch)` |
| `grbm` | `git rebase $(git_main_branch)` |
| `grbom` | `git rebase origin/$(git_main_branch)` |
| `grf` | `git reflog` |
| `gr` | `git remote` |
| `grv` | `git remote --verbose` |
| `gra` | `git remote add` |

@ -335,6 +335,7 @@ alias grbs='git rebase --skip'
alias grbd='git rebase $(git_develop_branch)'
alias grbm='git rebase $(git_main_branch)'
alias grbom='git rebase origin/$(git_main_branch)'
alias grf='git reflog'
alias gr='git remote'
alias grv='git remote --verbose'
alias gra='git remote add'

Loading…
Cancel
Save