* [PATCH] Tweak git-diff-tree -v output further (take 2).
@ 2005-05-06 19:37 Junio C Hamano
2005-05-06 21:40 ` Linus Torvalds
2005-05-06 21:47 ` H. Peter Anvin
0 siblings, 2 replies; 4+ messages in thread
From: Junio C Hamano @ 2005-05-06 19:37 UTC (permalink / raw)
To: Linus Torvalds; +Cc: git
(This one is simpler than the previous one I just sent out)
The first hunk of this is a pure bugfix---it guards us against a
commit message that does not end with a newline.
This adds the full header information to git-diff-tree -v output
in addition to the log message it already produces. It also
stops indenting the log message to match what git-export does.
Signed-off-by: Junio C Hamano <junkio@cox.net>
---
diff-tree.c | 22 ++++++++++++----------
1 files changed, 12 insertions(+), 10 deletions(-)
# - linus-mirror: diff-tree: add "verbose header" mode
# + (working tree)
--- a/diff-tree.c
+++ b/diff-tree.c
@@ -278,7 +278,7 @@ static int get_one_line(const char *msg,
while (len--) {
ret++;
- if (*msg++ == '\n')
+ if (!*msg || *msg++ == '\n')
break;
}
return ret;
@@ -287,12 +287,14 @@ static int get_one_line(const char *msg,
static char *generate_header(const char *commit, const char *parent, const char *msg, unsigned long len)
{
static char this_header[1000];
- int offset;
- offset = sprintf(this_header, "%s%s (from %s)\n", header_prefix, commit, parent);
- if (verbose_header) {
+ if (!verbose_header)
+ sprintf(this_header, "%s%s (from %s)\n", header_prefix,
+ commit, parent);
+ else {
+ int offset;
int hdr = 1;
-
+ offset = sprintf(this_header, "Id: %s\n", commit);
for (;;) {
const char *line = msg;
int linelen = get_one_line(msg, len);
@@ -306,11 +308,11 @@ static char *generate_header(const char
len -= linelen;
if (linelen == 1)
hdr = 0;
- if (hdr)
- continue;
- memset(this_header + offset, ' ', 4);
- memcpy(this_header + offset + 4, line, linelen);
- offset += linelen + 4;
+ memcpy(this_header + offset, line, linelen);
+ if (hdr && !strncmp(line, "parent ", 7) &&
+ !strncmp(line+7, parent, 40))
+ this_header[offset + 6] = '*';
+ offset += linelen;
}
this_header[offset++] = '\n';
this_header[offset] = 0;
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Tweak git-diff-tree -v output further (take 2).
2005-05-06 19:37 [PATCH] Tweak git-diff-tree -v output further (take 2) Junio C Hamano
@ 2005-05-06 21:40 ` Linus Torvalds
2005-05-06 22:05 ` Junio C Hamano
2005-05-06 21:47 ` H. Peter Anvin
1 sibling, 1 reply; 4+ messages in thread
From: Linus Torvalds @ 2005-05-06 21:40 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
On Fri, 6 May 2005, Junio C Hamano wrote:
>
> The first hunk of this is a pure bugfix---it guards us against a
> commit message that does not end with a newline.
Why do you think it helps anything at all?
We have a _length_ of buffer. We don't have any zero-termination.
Linus
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Tweak git-diff-tree -v output further (take 2).
2005-05-06 19:37 [PATCH] Tweak git-diff-tree -v output further (take 2) Junio C Hamano
2005-05-06 21:40 ` Linus Torvalds
@ 2005-05-06 21:47 ` H. Peter Anvin
1 sibling, 0 replies; 4+ messages in thread
From: H. Peter Anvin @ 2005-05-06 21:47 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Linus Torvalds, git
Junio C Hamano wrote:
> (This one is simpler than the previous one I just sent out)
>
> The first hunk of this is a pure bugfix---it guards us against a
> commit message that does not end with a newline.
No it doesn't. What it does is "guard" you against a commit message
which contains a null character. What's not entirely clear is if that's
what you wanted to do.
-hpa
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Tweak git-diff-tree -v output further (take 2).
2005-05-06 21:40 ` Linus Torvalds
@ 2005-05-06 22:05 ` Junio C Hamano
0 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2005-05-06 22:05 UTC (permalink / raw)
To: Linus Torvalds; +Cc: git
You are absolutely right.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2005-05-06 22:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-06 19:37 [PATCH] Tweak git-diff-tree -v output further (take 2) Junio C Hamano
2005-05-06 21:40 ` Linus Torvalds
2005-05-06 22:05 ` Junio C Hamano
2005-05-06 21:47 ` H. Peter Anvin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox