Unverified Commit d058801a authored by Pandu POLUAN's avatar Pandu POLUAN Committed by Marc Cornellà

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

Closes #8912
parent 137b4567
......@@ -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'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment