how to make a git-format patch

Subsystems: networking [general], the rest

4 messages, 3 authors, 2016-06-15 · open the first message on its own page

how to make a git-format patch

From: Aubrey <hidden>
Date: 2016-06-15 22:42:23

Hi list,

When I use GIT to generate a patch, I can use git-diff, if one file
changed, I can get the following patch:
=================================
diff --git a/net/packet/Kconfig b/net/packet/Kconfig
index 34ff93f..959c272 100644
--- a/net/packet/Kconfig
+++ b/net/packet/Kconfig
@@ -17,7 +17,7 @@ config PACKET

 config PACKET_MMAP
        bool "Packet socket: mmapped IO"
-       depends on PACKET
+       depends on PACKET && MMU
        help
          If you say Y here, the Packet protocol driver will use an IO
          mechanism that results in faster communication.
=================================
But I saw most of the git-format patches have a header in the front of
the patch file, like:
=================================
 * Added xxxxxx support

Signed-off-by: xxxxxxxx <redacted>
---

 net/packet/Kconfig |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/net/packet/Kconfig b/net/packet/Kconfig
index 34ff93f..959c272 100644
--- a/net/packet/Kconfig
+++ b/net/packet/Kconfig

----snip----
=================================

Just want to know how this kind of patch format generated.
Thanks for any hints.

Regards,
-Aubrey

Re: how to make a git-format patch

From: Jakub Narebski <hidden>
Date: 2016-06-15 22:42:23

Aubrey wrote:
quoted hunk
But I saw most of the git-format patches have a header in the front of
the patch file, like:
=================================
 * Added xxxxxx support

Signed-off-by: xxxxxxxx <redacted>
---

 net/packet/Kconfig |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/net/packet/Kconfig b/net/packet/Kconfig
index 34ff93f..959c272 100644
--- a/net/packet/Kconfig
+++ b/net/packet/Kconfig

----snip----
=================================

Just want to know how this kind of patch format generated.
Thanks for any hints.
Perhaps git-format-patch(1) is what you want?

-- 
Jakub Narebski
Warsaw, Poland

Re: how to make a git-format patch

From: Mathieu Chouquet-Stringer <hidden>
Date: 2016-06-15 22:42:23

aubreylee@gmail.com (Aubrey) writes:
But I saw most of the git-format patches have a header in the front of
the patch file, like:
I believe you're talking about 'git whatchanged -p' which not only displays
the diffs but also the commit comments.

-- 
Mathieu Chouquet-Stringer

Re: how to make a git-format patch

From: Aubrey <hidden>
Date: 2016-06-15 22:42:23

On 12 Apr 2006 16:04:16 +0200, Mathieu Chouquet-Stringer
[off-list ref] wrote:
I believe you're talking about 'git whatchanged -p' which not only displays
the diffs but also the commit comments.
git whatchanged -p didn't include the signoff and howmany lines
changed which git-format-patch seems not include commit comments.

Is there one command to merge the two kind of message?

Thanks,
-Aubrey
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help