Re: [PATCH 07/18] builtin rebase: support `keep-empty` option

2018-08-24 Thread Johannes Schindelin
Hi, On Wed, 8 Aug 2018, Pratik Karki wrote: > diff --git a/builtin/rebase.c b/builtin/rebase.c > index 42ee040da3..fd9ad8efae 100644 > --- a/builtin/rebase.c > +++ b/builtin/rebase.c > @@ -588,6 +607,8 @@ int cmd_rebase(int argc, const char **argv, const char > *prefix) >

[PATCH 07/18] builtin rebase: support `keep-empty` option

2018-08-08 Thread Pratik Karki
The `--keep-empty` option can be used to keep the commits that do not change anything from its parents in the result. While the scripted version uses `interactive_rebase=implied` to indicate that the rebase needs to use the `git-rebase--interactive` backend in non-interactive mode as fallback