Re: [PATCH 02/11] builtin rebase: support `git rebase --onto A...B`

2018-08-26 Thread Johannes Schindelin
Hi Junio, On Wed, 8 Aug 2018, Junio C Hamano wrote: > Pratik Karki writes: > > > This commit implements support for an --onto argument that is actually a > > "symmetric range" i.e. `...`. > > > > The equivalent shell script version of the code offers two different > > error messages for the

Re: [PATCH 02/11] builtin rebase: support `git rebase --onto A...B`

2018-08-08 Thread Junio C Hamano
Pratik Karki writes: > This commit implements support for an --onto argument that is actually a > "symmetric range" i.e. `...`. > > The equivalent shell script version of the code offers two different > error messages for the cases where there is no merge base vs more than > one merge base.

[PATCH 02/11] builtin rebase: support `git rebase --onto A...B`

2018-08-08 Thread Pratik Karki
This commit implements support for an --onto argument that is actually a "symmetric range" i.e. `...`. The equivalent shell script version of the code offers two different error messages for the cases where there is no merge base vs more than one merge base. Though following the similar approach