git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] SubmittingPatches : WIP tag in patches
  2016-02-26 14:05 [PATCH] SubmittingPatches : WIP tag in patches Pranit Bauva
@ 2016-02-26  8:00 ` Eric Sunshine
  2016-02-26 14:19   ` Pranit Bauva
  0 siblings, 1 reply; 5+ messages in thread
From: Eric Sunshine @ 2016-02-26  8:00 UTC (permalink / raw)
  To: Pranit Bauva; +Cc: Git Mailing List

On Fri, Feb 26, 2016 at 9:05 AM, Pranit Bauva <pranit.bauva@zoho.com> wrote:
> ---

Missing sign-off.

> diff --git a/Documentation/SubmittingPatches
> @@ -168,7 +168,9 @@ the closing bracket to mark the nature of the patch
> is also
>  encouraged.  E.g. [PATCH/RFC] is often used when the patch is
>  not ready to be applied but it is for discussion, [PATCH v2],
>  [PATCH v3] etc. are often seen when you are sending an update to
> -what you have previously sent.
> +what you have previously sent. [PATCH/WIP] is often used when some

Perhaps: /is often/can be/

> +work is yet left to be done on the patch but you want to get the
> +review on the completed part of the patch.

Maybe: s/review/feedback/

>  "git format-patch" command follows the best current practice to
>  format the body of an e-mail message.  At the beginning of the
> --
> 2.1.4

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] SubmittingPatches : WIP tag in patches
  2016-02-26 14:19   ` Pranit Bauva
  2016-02-26  8:19     ` Stefan Tatschner
@ 2016-02-26  8:19     ` Eric Sunshine
  1 sibling, 0 replies; 5+ messages in thread
From: Eric Sunshine @ 2016-02-26  8:19 UTC (permalink / raw)
  To: Pranit Bauva; +Cc: Git Mailing List

On Fri, Feb 26, 2016 at 9:19 AM, Pranit Bauva <pranit.bauva@zoho.com> wrote:
> Eric Sunshine:
>> On Fri, Feb 26, 2016 at 9:05 AM, Pranit Bauva <pranit.bauva@zoho.com> wrote:
>>> ---
>> Missing sign-off.
>
> I have to inoculate the habit of signing off every time.
>>> diff --git a/Documentation/SubmittingPatches
>>> @@ -168,7 +168,9 @@ the closing bracket to mark the nature of the patch
>>> is also
>>>  encouraged.  E.g. [PATCH/RFC] is often used when the patch is
>>>  not ready to be applied but it is for discussion, [PATCH v2],
>>>  [PATCH v3] etc. are often seen when you are sending an update to
>>> -what you have previously sent.
>>> +what you have previously sent. [PATCH/WIP] is often used when some
>>
>> Perhaps: /is often/can be/
>>
>>> +work is yet left to be done on the patch but you want to get the
>>> +review on the completed part of the patch.
>>
>> Maybe: s/review/feedback/
>>
>>>  "git format-patch" command follows the best current practice to
>>>  format the body of an e-mail message.  At the beginning of the
>>> --
>>> 2.1.4
>
> I have done the required changes, now I should send another email with
> tag [PATCH v2] right?

Yes, you can do that, or wait a bit longer for feedback from other reviewers.

It's also a good idea in the commentary section to say what changed
between v1 and v2, and, as an aid to reviewers, provide a link like
this[1] to the previous version.

[1]: http://thread.gmane.org/gmane.comp.version-control.git/287544

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] SubmittingPatches : WIP tag in patches
  2016-02-26 14:19   ` Pranit Bauva
@ 2016-02-26  8:19     ` Stefan Tatschner
  2016-02-26  8:19     ` Eric Sunshine
  1 sibling, 0 replies; 5+ messages in thread
From: Stefan Tatschner @ 2016-02-26  8:19 UTC (permalink / raw)
  To: Pranit Bauva, Eric Sunshine; +Cc: Git Mailing List

On 26.02.2016 15:19, Pranit Bauva wrote:
> I have to inoculate the habit of signing off every time.

There is this in git-config(1); hope that helps.

format.signOff
    A boolean value which lets you enable the -s/--signoff option of
    format-patch by default.  Note: Adding the Signed-off-by: line to a
    patch should be a conscious act and means that you certify you have
    the rights to submit this work under the same open source license.
    Please see the SubmittingPatches document for further discussion.

Stefan

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] SubmittingPatches : WIP tag in patches
@ 2016-02-26 14:05 Pranit Bauva
  2016-02-26  8:00 ` Eric Sunshine
  0 siblings, 1 reply; 5+ messages in thread
From: Pranit Bauva @ 2016-02-26 14:05 UTC (permalink / raw)
  To: Git Mailing List


---
 Documentation/SubmittingPatches | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Documentation/SubmittingPatches
b/Documentation/SubmittingPatches
index 98fc4cc..b2c7664 100644
--- a/Documentation/SubmittingPatches
+++ b/Documentation/SubmittingPatches
@@ -168,7 +168,9 @@ the closing bracket to mark the nature of the patch
is also
 encouraged.  E.g. [PATCH/RFC] is often used when the patch is
 not ready to be applied but it is for discussion, [PATCH v2],
 [PATCH v3] etc. are often seen when you are sending an update to
-what you have previously sent.
+what you have previously sent. [PATCH/WIP] is often used when some
+work is yet left to be done on the patch but you want to get the
+review on the completed part of the patch.

 "git format-patch" command follows the best current practice to
 format the body of an e-mail message.  At the beginning of the
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] SubmittingPatches : WIP tag in patches
  2016-02-26  8:00 ` Eric Sunshine
@ 2016-02-26 14:19   ` Pranit Bauva
  2016-02-26  8:19     ` Stefan Tatschner
  2016-02-26  8:19     ` Eric Sunshine
  0 siblings, 2 replies; 5+ messages in thread
From: Pranit Bauva @ 2016-02-26 14:19 UTC (permalink / raw)
  To: Eric Sunshine; +Cc: Git Mailing List

Eric Sunshine:
> On Fri, Feb 26, 2016 at 9:05 AM, Pranit Bauva <pranit.bauva@zoho.com> wrote:
>> ---
> 
> Missing sign-off.
> 

I have to inoculate the habit of signing off every time.
>> diff --git a/Documentation/SubmittingPatches
>> @@ -168,7 +168,9 @@ the closing bracket to mark the nature of the patch
>> is also
>>  encouraged.  E.g. [PATCH/RFC] is often used when the patch is
>>  not ready to be applied but it is for discussion, [PATCH v2],
>>  [PATCH v3] etc. are often seen when you are sending an update to
>> -what you have previously sent.
>> +what you have previously sent. [PATCH/WIP] is often used when some
> 
> Perhaps: /is often/can be/
> 
>> +work is yet left to be done on the patch but you want to get the
>> +review on the completed part of the patch.
> 
> Maybe: s/review/feedback/
> 
>>  "git format-patch" command follows the best current practice to
>>  format the body of an e-mail message.  At the beginning of the
>> --
>> 2.1.4

I have done the required changes, now I should send another email with
tag [PATCH v2] right?

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-02-26  8:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-26 14:05 [PATCH] SubmittingPatches : WIP tag in patches Pranit Bauva
2016-02-26  8:00 ` Eric Sunshine
2016-02-26 14:19   ` Pranit Bauva
2016-02-26  8:19     ` Stefan Tatschner
2016-02-26  8:19     ` Eric Sunshine

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).