Re: [PATCH 2/2] rebase: add --show-patch
From: Duy Nguyen <hidden>
Date: 2018-01-26 11:22:58
On Fri, Jan 26, 2018 at 6:12 PM, Phillip Wood [off-list ref] wrote:
quoted
diff --git a/git-rebase--merge.sh b/git-rebase--merge.sh index 06a4723d4d..5c513a9736 100644 --- a/git-rebase--merge.sh +++ b/git-rebase--merge.sh@@ -137,6 +137,10 @@ skip) finish_rb_merge return ;; +show-patch) + cmt="$(cat "$state_dir/current")" + exec git format-patch --subject-prefix= --stdout "${cmt}^!" + ;; esacHere and in the git-rebase--interactive you have access to the SHA of the failed pick so you could run git log --patch and git colored output
Yes. My first revision I actually did "git diff" here. The only problem is inconsistency because we can't color "git am --show-patch" the same way, the patch source is in text format, not in the repo. But if people are ok with that I sure would switch to "git show".
and it would use the pager in the same way as 'git am --show-patch' does
format-patch does set up pager. If it does not I would be very annoyed. I added this for convenience after all. -- Duy