Re: [RFC] request-pull with diff body itself
From: Cyrill Gorcunov <hidden>
Date: 2016-06-15 22:47:06
On 7/28/09, Junio C Hamano [off-list ref] wrote:
Cyrill Gorcunov [off-list ref] writes:quoted
Here is rfc in a sake of having ability to produce diff body in small series of changes in request-pull. we could use ">>" here and append diff by hands but adding "-p" option seems more comfortable. Dunno, just a thought.I think this is a useful thing to add, as I think I've seen some request-pull actually made with the patch text, most likely by hand.quoted
git shortlog ^$baserev $headrev git diff -M --stat --summary $merge_base $headrev + +if [ "$usediff" = "yes" ]; then + echo "---" + git diff -M -p $merge_base $headrev +fiYou can just use a single "git diff" invocation here, git diff -M --stat --summary $usediff $merge_base $headrev and set up "$usediff" to be either empty or -p in the option parsing part.
yeah, indeed, thanks for the hint Junio! Will post an updated patch in a day or so ( as only get back my laptop back). Or maybe someone could make it faster then me ;)