mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
feat(mercurial): add hgci
alias for interactive commit (#8912)
Closes #8912
This commit is contained in:
parent
137b45672d
commit
d058801a18
2 changed files with 2 additions and 0 deletions
|
@ -16,6 +16,7 @@ plugins=(... mercurial)
|
|||
| `hga` | `hg add` |
|
||||
| `hgc` | `hg commit` |
|
||||
| `hgca` | `hg commit --amend` |
|
||||
| `hgci` | `hg commit --interactive` |
|
||||
| `hgb` | `hg branch` |
|
||||
| `hgba` | `hg branches` |
|
||||
| `hgbk` | `hg bookmarks` |
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
alias hga='hg add'
|
||||
alias hgc='hg commit'
|
||||
alias hgca='hg commit --amend'
|
||||
alias hgci='hg commit --interactive'
|
||||
alias hgb='hg branch'
|
||||
alias hgba='hg branches'
|
||||
alias hgbk='hg bookmarks'
|
||||
|
|
Loading…
Reference in a new issue