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

2015-06-15 Thread Junio C Hamano
Michael Rappazzo rappa...@gmail.com writes: diff --git a/Documentation/git-rebase.txt b/Documentation/git-rebase.txt index 1d01baa..8ddab77 100644 --- a/Documentation/git-rebase.txt +++ b/Documentation/git-rebase.txt @@ -213,6 +213,9 @@ rebase.autoSquash:: rebase.autoStash:: If set

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

2015-06-13 Thread Michael Rappazzo
Difference between v4 and v5 of this patch: - added documention in Documentation/config.txt - renamed the new auto-rebase w/ config test to be less inaccurate Apologies for this, I should have caught these before. Michael Rappazzo (1): git-rebase--interactive.sh: add config option for

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

2015-06-13 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 rappa...@gmail.com ---