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) ...@@ -16,6 +16,7 @@ plugins=(... mercurial)
| `hga` | `hg add` | | `hga` | `hg add` |
| `hgc` | `hg commit` | | `hgc` | `hg commit` |
| `hgca` | `hg commit --amend` | | `hgca` | `hg commit --amend` |
| `hgci` | `hg commit --interactive` |
| `hgb` | `hg branch` | | `hgb` | `hg branch` |
| `hgba` | `hg branches` | | `hgba` | `hg branches` |
| `hgbk` | `hg bookmarks` | | `hgbk` | `hg bookmarks` |
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
alias hga='hg add' alias hga='hg add'
alias hgc='hg commit' alias hgc='hg commit'
alias hgca='hg commit --amend' alias hgca='hg commit --amend'
alias hgci='hg commit --interactive'
alias hgb='hg branch' alias hgb='hg branch'
alias hgba='hg branches' alias hgba='hg branches'
alias hgbk='hg bookmarks' 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