0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

feat(mercurial): add hgci alias for interactive commit (#8912)

Closes #8912
This commit is contained in:
Pandu POLUAN 2020-05-11 14:55:20 +07:00 committed by Marc Cornellà
parent 137b45672d
commit d058801a18
No known key found for this signature in database
GPG key ID: 0314585E776A9C1B
2 changed files with 2 additions and 0 deletions

View file

@ -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` |

View file

@ -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'