* [RFC][PATCH] docs: process: Submitting a patch for a single git commit.
@ 2019-10-11 16:33 Ingo Rohloff
2019-10-11 17:23 ` Jonathan Corbet
0 siblings, 1 reply; 6+ messages in thread
From: Ingo Rohloff @ 2019-10-11 16:33 UTC (permalink / raw)
To: corbet; +Cc: linux-doc, Ingo Rohloff
A short primer how to submit a single git commit as a patch via
e-mail using git send-email.
Signed-off-by: Ingo Rohloff <ingo.rohloff@lauterbach.com>
---
Notes:
I just went through this process and did a lot of mistakes,
because I was confused how git commits translate to patches via e-mail.
So I thought maybe writing down a very small primer how to submit
a single git commit via e-mail employing "git send-email" might
be a good idea.
I probably still have no clue how to do that correctly; so the primer
might have wrong information. Additionally I am not an English native
speaker so the language might be less than optimal.
What do you think ?
Documentation/process/submitting-patches.rst | 63 ++++++++++++++++++++
1 file changed, 63 insertions(+)
diff --git a/Documentation/process/submitting-patches.rst b/Documentation/process/submitting-patches.rst
index fb56297f70dc..b00518584810 100644
--- a/Documentation/process/submitting-patches.rst
+++ b/Documentation/process/submitting-patches.rst
@@ -24,6 +24,8 @@ of the mechanical work done for you, though you'll still need to prepare
and document a sensible set of patches. In general, use of ``git`` will make
your life as a kernel developer easier.
+.. _get_source_tree:
+
0) Obtain a current source tree
-------------------------------
@@ -836,6 +838,67 @@ command like this will do the trick::
git request-pull master git://my.public.tree/linux.git my-signed-tag
+17) A simple use case: Submitting a single git commit with ``git send-email``
+-----------------------------------------------------------------------------
+
+The scenario:
+You have a small code modification which sensibly fits into
+a single commit. You want to get this modification into the kernel.
+
+Assumptions:
+ - You are running a not too old Linux installation.
+ - You have ``git`` installed.
+ - You have the tools for ``git send-email`` installed.
+ It seems many Linux distributions deliver this set of tools in a
+ separate package. So make sure you have the appropriate package installed.
+ ``git send-email`` is able to directly talk to an SMTP server; so you
+ do not need a local mail transport agent or similar.
+ - You have configured ``git send-email``.
+ You might set the properties describing how you would like to send e-mail
+ via SMTP with the appropriate ``git config`` commands.
+ In particular you might need to set the properties:
+ ``sendemail.smtpserver``, ``sendemail.smtpserverport``, ``sendemail.smtpuser``,
+ ``sendemail.smtpencryption``, ``sendemail.smtppass``
+
+Process:
+ - Clone the kernel source tree; see :ref:`get_source_tree`
+ - Use ``git config`` to configure the user name and e-mail address for yourself.
+ - Create and checkout a git branch to work on your code modification. Use: ``git checkout -b <branch name>``
+ - Modify the code.
+ - Commit your code to your local git repository into your local branch with a single commit.
+ Your commit message should start with a single line: ``<subsystem>: <summary phrase>``.
+ The rest of the commit message should follow :ref:`describe_changes`
+ - Test your changes; they must compile and hopefully fix a problem.
+ If there are problems, modify your commit.
+ Use ``git commit --amend`` to modify your commit.
+ - You are now ready to generate a patch file suitable for sending via e-mail. Use::
+
+ git format-patch -1 -s
+
+ This command should create a patch file, which is close to what you need
+ to send via e-mail.
+ This command also adds a "Signed-off-by:" line; see :ref:`the_canonical_patch_format`
+ - Verify that your patch matches the required style::
+
+ ./scripts/checkpatch.pl <patch file>
+
+ If there are problems, modify your commit and subsequently your e-mail patch.
+ - Test if you are able to send the patch to yourself::
+
+ git send-email --to=<your email address> <patch file>
+
+ - If sending the e-mail to yourself worked, inspect the e-mail you have received
+ and check if it adheres to :ref:`the_canonical_patch_format`.
+ - Find out to which people the e-mail should be send::
+
+ ./scripts/get_maintainer.pl <patch file>
+
+ In general send the e-mail to the appropriate maintainer and put relevant
+ mailing lists on CC.
+ - Finally send the patch e-mail with::
+
+ git send-email --to=<maintainer> --cc=<mailing list 1> --cc=<mailing list 2> ...
+
References
----------
--
2.17.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [RFC][PATCH] docs: process: Submitting a patch for a single git commit.
2019-10-11 16:33 [RFC][PATCH] docs: process: Submitting a patch for a single git commit Ingo Rohloff
@ 2019-10-11 17:23 ` Jonathan Corbet
2019-10-11 19:37 ` Ingo Rohloff
2020-09-30 16:02 ` Ingo Rohloff
0 siblings, 2 replies; 6+ messages in thread
From: Jonathan Corbet @ 2019-10-11 17:23 UTC (permalink / raw)
To: Ingo Rohloff; +Cc: linux-doc
On Fri, 11 Oct 2019 18:33:58 +0200
Ingo Rohloff <ingo.rohloff@lauterbach.com> wrote:
> A short primer how to submit a single git commit as a patch via
> e-mail using git send-email.
>
> Signed-off-by: Ingo Rohloff <ingo.rohloff@lauterbach.com>
> ---
>
> Notes:
> I just went through this process and did a lot of mistakes,
> because I was confused how git commits translate to patches via e-mail.
>
> So I thought maybe writing down a very small primer how to submit
> a single git commit via e-mail employing "git send-email" might
> be a good idea.
>
> I probably still have no clue how to do that correctly; so the primer
> might have wrong information. Additionally I am not an English native
> speaker so the language might be less than optimal.
>
> What do you think ?
>
> Documentation/process/submitting-patches.rst | 63 ++++++++++++++++++++
> 1 file changed, 63 insertions(+)
I think we should find a place for this kind of information, but I don't
think submitting-patches.rst is it. That's meant to be a comprehensive set
of rules and guidelines; it's already far too long as it is. A separate
document with introductory tutorials might be a good idea.
> diff --git a/Documentation/process/submitting-patches.rst b/Documentation/process/submitting-patches.rst
> index fb56297f70dc..b00518584810 100644
> --- a/Documentation/process/submitting-patches.rst
> +++ b/Documentation/process/submitting-patches.rst
> @@ -24,6 +24,8 @@ of the mechanical work done for you, though you'll still need to prepare
> and document a sensible set of patches. In general, use of ``git`` will make
> your life as a kernel developer easier.
>
> +.. _get_source_tree:
> +
> 0) Obtain a current source tree
> -------------------------------
>
> @@ -836,6 +838,67 @@ command like this will do the trick::
>
> git request-pull master git://my.public.tree/linux.git my-signed-tag
>
> +17) A simple use case: Submitting a single git commit with ``git send-email``
> +-----------------------------------------------------------------------------
> +
> +The scenario:
> +You have a small code modification which sensibly fits into
> +a single commit. You want to get this modification into the kernel.
> +
> +Assumptions:
> + - You are running a not too old Linux installation.
What's "not too old"? A reader who needs documentation at this level will
not have an answer to that question.
> + - You have ``git`` installed.
> + - You have the tools for ``git send-email`` installed.
> + It seems many Linux distributions deliver this set of tools in a
> + separate package. So make sure you have the appropriate package installed.
> + ``git send-email`` is able to directly talk to an SMTP server; so you
> + do not need a local mail transport agent or similar.
> + - You have configured ``git send-email``.
This, too, will not be helpful to somebody needing this kind of
documentation. We should actually tell them how to do this configuration.
> + You might set the properties describing how you would like to send e-mail
> + via SMTP with the appropriate ``git config`` commands.
> + In particular you might need to set the properties:
> + ``sendemail.smtpserver``, ``sendemail.smtpserverport``, ``sendemail.smtpuser``,
> + ``sendemail.smtpencryption``, ``sendemail.smtppass``
This is a start, but many readers at this level won't really know what this
means.
> +Process:
> + - Clone the kernel source tree; see :ref:`get_source_tree`
> + - Use ``git config`` to configure the user name and e-mail address for yourself.
Examples are good for this kind of thing.
Also, watch your line lengths; there's no reason to go over 80 columns for
this kind of text. You tell people to run checkpatch but didn't do it :)
> + - Create and checkout a git branch to work on your code modification. Use: ``git checkout -b <branch name>``
> + - Modify the code.
> + - Commit your code to your local git repository into your local branch with a single commit.
> + Your commit message should start with a single line: ``<subsystem>: <summary phrase>``.
> + The rest of the commit message should follow :ref:`describe_changes`
So much of this would work better with an example.
> + - Test your changes; they must compile and hopefully fix a problem.
"hopefully"?
Honestly, you probably want to test your changes before you start
committing things and writing changelogs.
> + If there are problems, modify your commit.
> + Use ``git commit --amend`` to modify your commit.
...again... why would you commit untested changes?
> + - You are now ready to generate a patch file suitable for sending via e-mail. Use::
> +
> + git format-patch -1 -s
> +
> + This command should create a patch file, which is close to what you need
> + to send via e-mail.
> + This command also adds a "Signed-off-by:" line; see :ref:`the_canonical_patch_format`
Normally one adds the signoff when committing.
> + - Verify that your patch matches the required style::
> +
> + ./scripts/checkpatch.pl <patch file>
> +
> + If there are problems, modify your commit and subsequently your e-mail patch.
> + - Test if you are able to send the patch to yourself::
> +
> + git send-email --to=<your email address> <patch file>
> +
> + - If sending the e-mail to yourself worked, inspect the e-mail you have received
> + and check if it adheres to :ref:`the_canonical_patch_format`.
This is late to be sure you have your changelog formatted correctly.
It can be good advice to tell people to ensure that the patch can be
applied. git send-email shouldn't corrupt patches, though.
> + - Find out to which people the e-mail should be send::
> +
> + ./scripts/get_maintainer.pl <patch file>
> +
> + In general send the e-mail to the appropriate maintainer and put relevant
> + mailing lists on CC.
> + - Finally send the patch e-mail with::
> +
> + git send-email --to=<maintainer> --cc=<mailing list 1> --cc=<mailing list 2> ...
> +
>
> References
> ----------
Thanks for working to improve our documentation! I think there can be
value in something like this, once it gets into shape.
jon
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC][PATCH] docs: process: Submitting a patch for a single git commit.
2019-10-11 17:23 ` Jonathan Corbet
@ 2019-10-11 19:37 ` Ingo Rohloff
2020-09-30 16:02 ` Ingo Rohloff
1 sibling, 0 replies; 6+ messages in thread
From: Ingo Rohloff @ 2019-10-11 19:37 UTC (permalink / raw)
To: Jonathan Corbet; +Cc: linux-doc
On Fri, 11 Oct 2019 11:23:57 -0600
Jonathan Corbet <corbet@lwn.net> wrote:
> On Fri, 11 Oct 2019 18:33:58 +0200
> Ingo Rohloff <ingo.rohloff@lauterbach.com> wrote:
>
> ...
>
> I think we should find a place for this kind of information, but I don't
> think submitting-patches.rst is it. That's meant to be a comprehensive set
> of rules and guidelines; it's already far too long as it is. A separate
> document with introductory tutorials might be a good idea.
>
Could you make a suggestion where to put it ?
I did not really explain my intention:
This was not intended as an introductory tutorial.
The intention is to provide a "Quick Start" for people
who know what they are doing in general, but simply do not
have any knowledge about the particular process involved
in submitting a Linux kernel patch.
I fully expect that someone who reads this at least knows:
- How to use git
- How to modify/configure/compile/test a kernel
- Has an idea what an SMTP server is
- ...
My personal problem was that I wanted to submit a patch.
I have no trouble compiling Linux kernels and working with git etc.
But I for sure did not have any idea at all how to convert a
git commit into a patch for submission into the Linux kernel.
So the problem was only about what exactly should be send in
which format where.
I did not know about "git send-email"; I read about it somewhere.
I tried it and got "unknown command", because it seems most
Linux distributions have that in a separate package.
I was wondering if I needed an extra special version of git.
After I found that I need to install an extra package,
I was wondering next if I need other software too
(like "exim" or "postfix" or "sendmail" or ...)
The intended audience of this primer are people who are
proficient with computers (they know about SMTP/MTAs/git ...)
but simply never submitted a Linux patch before.
I myself ended up sending the same patch at least three times
and I am still slightly embarrassed.
I think I actually did some small stuff on the Linux kernel
20 years ago maybe ?
Boy have things changed ;-)
git did not exist back then, and I do not think "Signed-off-by",
was mentioned anywhere.
with best regards
Ingo Rohloff
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC][PATCH] docs: process: Submitting a patch for a single git commit.
2019-10-11 17:23 ` Jonathan Corbet
2019-10-11 19:37 ` Ingo Rohloff
@ 2020-09-30 16:02 ` Ingo Rohloff
2020-09-30 16:47 ` Jonathan Corbet
1 sibling, 1 reply; 6+ messages in thread
From: Ingo Rohloff @ 2020-09-30 16:02 UTC (permalink / raw)
To: Jonathan Corbet; +Cc: linux-doc
Hi,
it's been quite a long time, but I really want to try again,
because the last 5 times I tried to send in a patch,
the information I wrote down here is EXACTLY what I needed (5 times...)
I cleaned up the patch a little bit (only very minor modifications),
but before I send this again, let me try to comment on the original
critique.
Additionally I am not even sure how to post a modified patch
to this mailing list :-).
(I need to look that up again).
Summary: I really really think the information I wrote down
is highly useful for someone who:
* knows about git
* knows about e-mail
* in general knows about computers
and just wonders
How do I submit a patch for the Linux Kernel source code ?
The text I wrote IS NOT meant for:
* People who do not know about git
* People who do not know about the general workings of E-Mail
* People who in general are working 1st time on a programming project.
With that preface, referring to the last E-Mail (long time ago...)
On Fri, 11 Oct 2019 11:23:57 -0600
Jonathan Corbet <corbet@lwn.net> wrote:
> On Fri, 11 Oct 2019 18:33:58 +0200
> Ingo Rohloff <ingo.rohloff@lauterbach.com> wrote:
>
> > A short primer how to submit a single git commit as a patch via
> > e-mail using git send-email.
> >
>
> I think we should find a place for this kind of information, but I don't
> think submitting-patches.rst is it. That's meant to be a comprehensive set
> of rules and guidelines; it's already far too long as it is. A separate
> document with introductory tutorials might be a good idea.
What my patch tries to provide is explicitly what it says in the commit message
A primer how to submit a single git commit...
This is not meant to be "introductory".
I expect people who read this to have a working knowledge of:
* Compiling the Linux kernel
* Using git
* Good background knowledge about IT technology in general (like E-Mail ...)
I was in exactly this position; so I googled for
linux kernel submit patch
and "submitting-patches" is the one document which stands out.
Note: My code modification was already finished; it compiled, it worked,
I just didn't know how to publish that modification.
I did not google for "an introduction to the Linux Kernel",
"an introduction how to write a Linux driver", etc.
I did not need an "introduction" to anything. I had the concrete question
How exactly do I submit a patch for the Linux Kernel source code?
I think the current "submitting-patches.rst" answers this pretty vaguely.
> That's meant to be a comprehensive set
> of rules and guidelines; it's already far too long as it is.
If you want to get this document shorter, my suggestion would be:
Move all the "comprehensive" part to somewhere else.
I think the document tells you as a side note how to submit a patch;
especially if it's just a minor bug-fix.
So why is this document labeled "submitting-patches" ?
As far as I can tell at least half of the document talks
about how to write your code modifications so that they are acceptable.
But that's more about "coding style" or
"general guidelines for writing Linux Kernel source code"
and not about the process how to submit a patch.
The document currently tells you:
* 1) Use "diff -up"
I think this is completely outdated.
No one using git will use "diff -up".
I guess 99% of the people working on the Linux Kernel use git
* 2) Describe your changes
That's interesting for someone who has some major work done.
It's completely irrelevant for someone who wants to send in a minor fix.
* 3) Separate your Changes
Again completely irrelevant for someone who wants to send in a minor fix.
* 5) Select the recipients for your patch
Unfortunately this section does not tell you about
./scripts/get_maintainer.pl
which is what you really need.
etc,...
All of this information is useful if someone wants to send in some major modification,
split over several files and many commits;
but that's not really about "submitting a patch"; it is more about how to work
together with other kernel developers to get your contribution into a state,
where it will be accepted.
Additionally it seems the document focuses on how to send a patch via
a regular E-Mail client (outlook/thunderbird ...); there also is a
separate document for this (process/email-clients.rst).
My personal experience: Do not use any of these E-Mail clients
at all; they make life 100% more complicated...
and that's exactly what "process/email-clients.rst" tells you too.
> > +Assumptions:
> > + - You are running a not too old Linux installation.
>
> What's "not too old"? A reader who needs documentation at this level will
> not have an answer to that question.
>
This sentence means:
Don't try this on a 20 year old machine which runs a Linux 2.6 kernel.
That's anyway a bad idea, because compiling and testing your patch
will take ages.
What "too old" means is subjective in this sentence.
As long as you (as a developer) are satisfied, then the machine
is obviously not "too old".
> > + - You have ``git`` installed.
> > + - You have the tools for ``git send-email`` installed.
> > + It seems many Linux distributions deliver this set of tools in a
> > + separate package. So make sure you have the appropriate package installed.
> > + ``git send-email`` is able to directly talk to an SMTP server; so you
> > + do not need a local mail transport agent or similar.
> > + - You have configured ``git send-email``.
>
> This, too, will not be helpful to somebody needing this kind of
> documentation.
I disagree: This is unbelievable helpful.
Let me try to explain:
My biggest problem was to find out that "git send-email" exists.
So far "git send-email" is only mentioned as a side note
in "submitting-patches.rst" under the section
15) Explicit In-Reply-To headers
I already was using git quite a lot, but there never was any need
to use "git send-email", because nowadays lots of projects use "github"
or if it's inside a company "gitea" or whatever.
This means most of the time, patches are NOT send via E-Mail.
Not that I find anything wrong with E-Mail;
it's just not used for that many projects.
So then I found out that "git send-email" exists.
So the first thing I tried was to execute
git send-email ...
and my git tells me it doesn't know this command.
Huh ?
Oh it turns out "git send-email" is NOT installed per default,
when you install "git".
"git send-email" is installed as a separate package...
I think "gentoo" might have it directly in the "git" package,
but even there I am not sure.
Next question: Do I have to setup my Mail Transport Agent in a specific
way to use "git send-email" ?
I know enough about E-Mail etc, to know what an MTA is in principle.
It turns out I do not need to do anything here because "git send-email"
already does it all (because it directly talks to an SMTP server).
Good to know.
I and probably tons of other computer affine people understand
what this means, because we know how E-Mail works in principle.
> We should actually tell them how to do this configuration.
The next three sentences:
>
> > + You might set the properties describing how you would like to send e-mail
> > + via SMTP with the appropriate ``git config`` commands.
> > + In particular you might need to set the properties:
> > + ``sendemail.smtpserver``, ``sendemail.smtpserverport``, ``sendemail.smtpuser``,
> > + ``sendemail.smtpencryption``, ``sendemail.smtppass``
>
> This is a start, but many readers at this level won't really know what this
> means.
I disagree:
The target for this primer are people who do understand computers
and Internet and E-Mail and so on.
The target are people, who just don't know how to send in a patch for
the Linux Kernel source code.
If I know what I have to put in the configuration of an E-Mail client
(instead of clicking "auto-detect" or "Wizard"), I very well know what
"smtpserver", "smtpserverport" etc means, because that's exactly
what I need to put into the configuration of my E-Mail client too.
Also: I expect someone reading this to use google and search for
git send-email configuration
>
> > +Process:
> > + - Clone the kernel source tree; see :ref:`get_source_tree`
> > + - Use ``git config`` to configure the user name and e-mail address for yourself.
>
> Examples are good for this kind of thing.
I expect someone reading this to use google and search for
git config email
Well thinking more about this sentence :-)
I actually expect someone reading this to already
have executed these commands.
So you might completely leave this out.
>
> Also, watch your line lengths; there's no reason to go over 80 columns for
> this kind of text. You tell people to run checkpatch but didn't do it :)
I tried to fix this (not published yet).
Does "checkpatch" work for ".rst" files ?
I was not aware...
Because you mentioned line lengths:
I would find it quite useful to enforce line breaks at the
output of the ".rst" files, so what you get displayed here:
https://www.kernel.org/doc/html/v4.17/process/submitting-patches.html
It really helps to have short paragraphs which do not span over the
whole width of my huge 16:9 display.
Is that possible and allowed for the ".rst" files, or this a "no no" ?
>
> > + - Create and checkout a git branch to work on your code modification. Use: ``git checkout -b <branch
> > name>``
> > + - Modify the code.
> > + - Commit your code to your local git repository into your local branch with a single commit.
> > + Your commit message should start with a single line: ``<subsystem>: <summary phrase>``.
> > + The rest of the commit message should follow :ref:`describe_changes`
>
> So much of this would work better with an example.
I don't agree:
I basically expect that people who want to send in a patch for the
Linux Kernel source code to be able to use git anyway.
What's specific for the Linux Kernel is what's expected for the commit message.
Looking at other projects on github: There are a lot of them who use different
suggestions how your commit message should look like; many many many projects
are simply too small to start of with "<subsystem>:".
>
> > + - Test your changes; they must compile and hopefully fix a problem.
>
> "hopefully"?
>
> Honestly, you probably want to test your changes before you start
> committing things and writing changelogs.
>
I strongly disagree.
We are talking about your *local* git repository here.
Of course you should start to create commits in
your *local* git repository.
That's the whole point of using git.
The test phase is about to get your local commits into such
a shape that you are confident to publish them via E-Mail.
Even with testing it's not 100% guaranteed, that what you publish
is completely correct. That's why I wrote "hopefully":
It's entirely possible that you publish your change and someone
else (or even yourself) tells you:
What happens if ...
and then it turns out you overlooked something and you created
a problem instead of fixing one.
Maybe I should rephrase that to say
Test your changes; they must compile. Do your best to ensure
that your changes are fixing a problem and not creating a new one.
?
> > + If there are problems, modify your commit.
> > + Use ``git commit --amend`` to modify your commit.
>
> ...again... why would you commit untested changes?
>
Because this is in your *local* repository.
With git, "commit" does not mean "publish".
You should not *publish* untested changes;
but it totally makes sense to "commit" them locally, ...
and repeat this several times until you are satisfied.
> > + - You are now ready to generate a patch file suitable for sending via e-mail. Use::
> > +
> > + git format-patch -1 -s
> > +
> > + This command should create a patch file, which is close to what you need
> > + to send via e-mail.
> > + This command also adds a "Signed-off-by:" line; see :ref:`the_canonical_patch_format`
>
> Normally one adds the signoff when committing.
I do it differently:
I expect to run "git commit" several times
(see above, we are talking about your local git repository).
I don't want to run
git commit -s
every time (I might forget it at least once).
So I do that once, when I am ready to publish the patch.
Of course other people might have different preferences;
I just don't see why I should always enforce a
sign-off line in my *local* (not published) commits.
>
> > + - Verify that your patch matches the required style::
> > +
> > + ./scripts/checkpatch.pl <patch file>
> > +
> > + If there are problems, modify your commit and subsequently your e-mail patch.
> > + - Test if you are able to send the patch to yourself::
> > +
> > + git send-email --to=<your email address> <patch file>
> > +
> > + - If sending the e-mail to yourself worked, inspect the e-mail you have received
> > + and check if it adheres to :ref:`the_canonical_patch_format`.
>
> This is late to be sure you have your changelog formatted correctly.
I disagree.
It's right before you are ready to publish your code modification.
What you did in the meantime is completely irrelevant (except for yourself),
because none of that is published.
>
> It can be good advice to tell people to ensure that the patch can be
> applied. git send-email shouldn't corrupt patches, though.
>
Yes exactly: That's why my commit message says "... using git send-email".
That's why I so strongly focus on "git send-email";
using other E-Mail clients is a nightmare IMHO.
so long
Ingo
--
Dipl.-Inform.
Ingo ROHLOFF
System Engineer/Debug & Trace Tools
Lauterbach Engineering GmbH & Co KG
Altlaufstraße 40
85635 Höhenkirchen-Siegertsbrunn
GERMANY
phone +49 8102 9876-142
mailto:ingo.rohloff@lauterbach.com
https://www.lauterbach.com
Registered Office: Höhenkirchen-Siegertsbrunn, Germany, Local Court: Munich, HRB 87406, VAT ID: DE246770537
Managing Directors: Lothar Lauterbach, Stephan Lauterbach, Dr. Thomas Ullmann
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC][PATCH] docs: process: Submitting a patch for a single git commit.
2020-09-30 16:02 ` Ingo Rohloff
@ 2020-09-30 16:47 ` Jonathan Corbet
2020-09-30 17:26 ` Randy Dunlap
0 siblings, 1 reply; 6+ messages in thread
From: Jonathan Corbet @ 2020-09-30 16:47 UTC (permalink / raw)
To: Ingo Rohloff; +Cc: linux-doc
On Wed, 30 Sep 2020 18:02:38 +0200
Ingo Rohloff <ingo.rohloff@lauterbach.com> wrote:
> it's been quite a long time, but I really want to try again,
> because the last 5 times I tried to send in a patch,
> the information I wrote down here is EXACTLY what I needed (5 times...)
>
> I cleaned up the patch a little bit (only very minor modifications),
> but before I send this again, let me try to comment on the original
> critique.
I'm sorry, but this is far from useful...you're referencing a year-old
discussion that has long since been pushed out of my brain.
If you have a patch, please send it. If, however, you choose to ignore
the feedback you got last time, you're likely to run into the same issues
this time around.
Thanks,
jon
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC][PATCH] docs: process: Submitting a patch for a single git commit.
2020-09-30 16:47 ` Jonathan Corbet
@ 2020-09-30 17:26 ` Randy Dunlap
0 siblings, 0 replies; 6+ messages in thread
From: Randy Dunlap @ 2020-09-30 17:26 UTC (permalink / raw)
To: Jonathan Corbet, Ingo Rohloff; +Cc: linux-doc
On 9/30/20 9:47 AM, Jonathan Corbet wrote:
> On Wed, 30 Sep 2020 18:02:38 +0200
> Ingo Rohloff <ingo.rohloff@lauterbach.com> wrote:
>
>> it's been quite a long time, but I really want to try again,
>> because the last 5 times I tried to send in a patch,
>> the information I wrote down here is EXACTLY what I needed (5 times...)
>>
>> I cleaned up the patch a little bit (only very minor modifications),
>> but before I send this again, let me try to comment on the original
>> critique.
>
> I'm sorry, but this is far from useful...you're referencing a year-old
> discussion that has long since been pushed out of my brain.
>
> If you have a patch, please send it. If, however, you choose to ignore
> the feedback you got last time, you're likely to run into the same issues
> this time around.
And there have been a few changes to submitting-patches.rst in that year,
so please take them into account also.
thanks.
--
~Randy
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-09-30 17:26 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-11 16:33 [RFC][PATCH] docs: process: Submitting a patch for a single git commit Ingo Rohloff
2019-10-11 17:23 ` Jonathan Corbet
2019-10-11 19:37 ` Ingo Rohloff
2020-09-30 16:02 ` Ingo Rohloff
2020-09-30 16:47 ` Jonathan Corbet
2020-09-30 17:26 ` Randy Dunlap
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).