[PATCH] format-patch: allow --no-patch to disable patch output

2016-04-07 Thread Jacob Keller
The documentation for format-patch indicates that --no-patch wilL suppress patch output. It also incorrectly mentions that -s will also suppress the patch output, but this is incorrect because -s is used to add the sign-off line first. Fix the documentation to remove the indication about -s. Fix bu

Re: [PATCH] format-patch: allow --no-patch to disable patch output

2016-04-07 Thread Eric Sunshine
On Thu, Apr 7, 2016 at 12:46 PM, Jacob Keller wrote: > The documentation for format-patch indicates that --no-patch wilL > suppress patch output. It also incorrectly mentions that -s will also > suppress the patch output, but this is incorrect because -s is used to > add the sign-off line first. F

Re: [PATCH] format-patch: allow --no-patch to disable patch output

2016-04-08 Thread Jacob Keller
On Thu, Apr 7, 2016 at 2:30 PM, Eric Sunshine wrote: > On Thu, Apr 7, 2016 at 12:46 PM, Jacob Keller > wrote: >> The documentation for format-patch indicates that --no-patch wilL >> suppress patch output. It also incorrectly mentions that -s will also >> suppress the patch output, but this is in

Re: [PATCH] format-patch: allow --no-patch to disable patch output

2016-04-08 Thread Junio C Hamano
Jacob Keller writes: > So if I want to get the summary of a patch out of a commit without the > actual diff what would you suggest? "git log --stat"? If you have a set of (discrete) commits, "git show --stat A B C"? > Basically, I have a process where we have post processed code, and I > want

Re: [PATCH] format-patch: allow --no-patch to disable patch output

2016-04-08 Thread Jacob Keller
On Fri, Apr 8, 2016 at 11:30 AM, Junio C Hamano wrote: > Jacob Keller writes: > >> So if I want to get the summary of a patch out of a commit without the >> actual diff what would you suggest? > > "git log --stat"? > > If you have a set of (discrete) commits, "git show --stat A B C"? > >> Basical