From: Petr Sebor <hidden> Date: 2016-06-15 22:42:37
Hello,
has anyone noticed that the 'git diff' output somehow lacks the newline
after the @@ tag?
The linux-kernel list is full of diffs whose hunks begin like:
@@ -1475,6 +1475,7 @@ int do_coredump(long signr, int exit_cod
@@ -1516,22 +1517,34 @@ int do_coredump(long signr, int exit_cod
@@ -1428,7 +1442,7 @@ static int elf_core_dump(long signr, str
instead of:
@@ -1475,6 +1475,7 @@ int do_coredump(long signr, int exit_cod
@@ -1516,22 +1517,34 @@ int do_coredump(long signr, int exit_cod
@@ -1428,7 +1442,7 @@ static int elf_core_dump(long signr, str
It is not only a problem of the linux-kernel, my local git installation
suffers from this as well...
Regards
Petr
From: Jakub Narebski <hidden> Date: 2016-06-15 22:42:37
Petr Sebor wrote:
Alex Riesen wrote:
quoted
On 8/18/06, Petr Sebor [off-list ref] wrote:
quoted
Hello,
has anyone noticed that the 'git diff' output somehow lacks the newline
after the @@ tag?
Why should it? It's hunk comment.
Hunk comment? Maybe we don't understand each other...
Hunk comment as in "diff -p":
-p Show which C function each change is in.
(which is simpliefied to: show first line preceding hunk which begins with
word character in first column).
--
Jakub Narebski
Warsaw, Poland
ShadeHawk on #git
From: Jeff King <hidden> Date: 2016-06-15 22:42:37
On Fri, Aug 18, 2006 at 02:37:42PM +0200, Petr Sebor wrote:
quoted
quoted
has anyone noticed that the 'git diff' output somehow lacks the newline
after the @@ tag?
Why should it? It's hunk comment.
Hunk comment? Maybe we don't understand each other...
The intent of a hunk comment is to give the user some context. Note how
it's usually the C function name, even if the declaration of that
function isn't the line right before the context lines?
From: Jakub Narebski <hidden> Date: 2016-06-15 22:42:37
Petr Sebor wrote:
Jeff King wrote:
quoted
Try diff -p to get a hunk comment.
-Peff
Ouch.... got it. Is there a way to turn the comment generation off btw?
Other than GIT_DIFF_OPTS (although how to turn off present -p option), or
GIT_EXTERNAL_DIFF (see git-diff-tree(1))?
Why do you want to turn it off? patch understands this format...
--
Jakub Narebski
Warsaw, Poland
ShadeHawk on #git