Re: [PATCH] git-rebase--interactive.sh: add config option for custom instruction format

2015-06-11 Thread Johannes Schindelin
Hi Mike, On 2015-06-11 16:02, Mike Rappazzo wrote: > On Thu, Jun 11, 2015 at 9:40 AM, Johannes Schindelin > wrote: >> >> On 2015-06-11 03:30, Michael Rappazzo wrote: >> >>> diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh >>> index dc3133f..6d14315 100644 >>> --- a/git-rebase-

Re: [PATCH] git-rebase--interactive.sh: add config option for custom instruction format

2015-06-11 Thread Mike Rappazzo
On Thu, Jun 11, 2015 at 9:40 AM, Johannes Schindelin wrote: > Hi Michael, > > On 2015-06-11 03:30, Michael Rappazzo wrote: > >> diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh >> index dc3133f..6d14315 100644 >> --- a/git-rebase--interactive.sh >> +++ b/git-rebase--interactive

Re: [PATCH] git-rebase--interactive.sh: add config option for custom instruction format

2015-06-11 Thread Johannes Schindelin
Hi Michael, On 2015-06-11 03:30, Michael Rappazzo wrote: > diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh > index dc3133f..6d14315 100644 > --- a/git-rebase--interactive.sh > +++ b/git-rebase--interactive.sh > @@ -740,10 +740,19 @@ collapse_todo_ids() { > # "pick sha1 fixup

[PATCH] git-rebase--interactive.sh: add config option for custom instruction format

2015-06-10 Thread Michael Rappazzo
A config option 'rebase.instructionFormat' can override the default 'oneline' format of the rebase instruction list. Since the list is parsed using the left, right or boundary mark plus the sha1, they are prepended to the instruction format. Signed-off-by: Michael Rappazzo --- Documentation/git

Re: [PATCH] git-rebase--interactive.sh: add config option for custom

2015-06-08 Thread Junio C Hamano
Mike Rappazzo writes: > On Mon, Jun 8, 2015 at 11:28 AM, Junio C Hamano wrote: > >> This is optional, but I still wonder why the command line cannot be >> more like this, though: >> >> format=$(git config --get rebase.insnFormat) >> git log --format="%H ${format-%s}" --reverse --

Re: [PATCH] git-rebase--interactive.sh: add config option for custom

2015-06-08 Thread Mike Rappazzo
On Mon, Jun 8, 2015 at 11:28 AM, Junio C Hamano wrote: > Michael Rappazzo writes: > >> A config option 'rebase.instructionFormat' can override the >> default 'oneline' format of the rebase instruction list. >> >> Since the list is parsed using the left, right or boundary mark plus >> the sha1, th

Re: [PATCH] git-rebase--interactive.sh: add config option for custom

2015-06-08 Thread Junio C Hamano
Michael Rappazzo writes: > A config option 'rebase.instructionFormat' can override the > default 'oneline' format of the rebase instruction list. > > Since the list is parsed using the left, right or boundary mark plus > the sha1, they are prepended to the instruction format. > > Signed-off-by: M

[PATCH] git-rebase--interactive.sh: add config option for custom

2015-06-07 Thread Michael Rappazzo
A config option 'rebase.instructionFormat' can override the default 'oneline' format of the rebase instruction list. Since the list is parsed using the left, right or boundary mark plus the sha1, they are prepended to the instruction format. Signed-off-by: Michael Rappazzo --- git-rebase--inter