]> git.ipfire.org Git - thirdparty/git.git/commit - revision.h
format-patch: add --range-diff option to embed diff in cover letter
authorEric Sunshine <sunshine@sunshineco.com>
Sun, 22 Jul 2018 09:57:13 +0000 (05:57 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 14 Aug 2018 21:27:04 +0000 (14:27 -0700)
commit31e2617a5f8fe1c114e72f058d1c035bbf77cffe
tree83ffca7f0e55973f14e05d48160dd83f5dc448cd
parent73a834e9e27906a76940f1ced5c132bce205d3f8
format-patch: add --range-diff option to embed diff in cover letter

When submitting a revised version of a patch series, it can be helpful
(to reviewers) to include a summary of changes since the previous
attempt in the form of a range-diff, however, doing so involves manually
copy/pasting the diff into the cover letter.

Add a --range-diff option to automate this process. The argument to
--range-diff specifies the tip of the previous attempt against which to
generate the range-diff. For example:

    git format-patch --cover-letter --range-diff=v1 -3 v2

(At this stage, the previous attempt and the patch series being
formatted must share a common base, however, a subsequent enhancement
will make it possible to specify an explicit revision range for the
previous attempt.)

Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-format-patch.txt
builtin/log.c
revision.h
t/t3206-range-diff.sh