diff options
| author | Harkesh <100549064+harkeshbirman@users.noreply.github.com> | 2024-02-01 21:30:27 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-01 17:00:27 +0100 |
| commit | 6f215cd6922a76cf8ac6f629d0de386c3eb6667a (patch) | |
| tree | a98d73bac384f6374e289baae14dabbc19067989 /plugins | |
| parent | 4efad7ab1ba0d1715af62e484c6852808581cfb9 (diff) | |
| download | zsh-6f215cd6922a76cf8ac6f629d0de386c3eb6667a.tar.gz zsh-6f215cd6922a76cf8ac6f629d0de386c3eb6667a.tar.bz2 zsh-6f215cd6922a76cf8ac6f629d0de386c3eb6667a.zip | |
feat(git): add `grf` alias (#12176)
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/git/README.md | 1 | ||||
| -rw-r--r-- | plugins/git/git.plugin.zsh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/plugins/git/README.md b/plugins/git/README.md index be3f85827..4acb0c858 100644 --- a/plugins/git/README.md +++ b/plugins/git/README.md @@ -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` | diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 5c3064e8a..692a36a73 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -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' |
