Hi Junio, On Tue, 4 Sep 2018, Junio C Hamano wrote: > "Johannes Schindelin via GitGitGadget" <gitgitgadget@xxxxxxxxx> > writes: > > > + test_must_fail git -c core.editor="grep -q ^pick" \ > > + rebase -ki --autosquash HEAD~4 && > > When merged to 'pu', this reveals that "git rebase" rewritten in C > knows "--keep-empty" but not "-k". I had already reported this: https://public-inbox.org/git/nycvar.QRO.7.76.6.1808241803100.73@xxxxxxxxxxxxxxxxx/ > > I did a quick eyeballing between master:git-rebase.sh and > pu:builtin/rebase.c and I think that it is the only one that is > missed, but somebody may want to lend us a second set of eyes. > > -- >8 -- > Subject: rebase: re-add forgotten -k that stands for --keep-empty > > 630a70ea ("builtin rebase: support `keep-empty` option", 2018-08-08) > forgot that the option comes with a short-and-sweet -k synonym. Add > it back. > > Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> Since this is not in `next` yet, let's do it the correct way. I had a fixup! sitting in my wip-rebase branch all the time, I just needed to find the time and motivation to figure out how to let GitGitGadget send a v2 when v1 was not sent via GitGitGadget. Ciao, Dscho > --- > builtin/rebase.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/builtin/rebase.c b/builtin/rebase.c > index 87590047b3..b26f9c10cf 100644 > --- a/builtin/rebase.c > +++ b/builtin/rebase.c > @@ -847,7 +847,7 @@ int cmd_rebase(int argc, const char **argv, const char *prefix) > &options.allow_rerere_autoupdate, > N_("allow rerere to update index with resolved " > "conflict")), > - OPT_BOOL(0, "keep-empty", &options.keep_empty, > + OPT_BOOL('k', "keep-empty", &options.keep_empty, > N_("preserve empty commits during rebase")), > OPT_BOOL(0, "autosquash", &options.autosquash, > N_("move commits that begin with " > >