login
Header Space

 
 

Fix "git log -z" behaviour

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Don Zickus <dzickus@...>, Junio C Hamano <junkio@...>
Cc: Git Mailing List <git@...>
Date: Wednesday, February 7, 2007 - 3:49 pm

For commit messages, we should really put the "line_termination" when we 
output the character in between different commits, *not* between the 
commit and the diff. The diff goes hand-in-hand with the commit, it 
shouldn't be separated from it with the termination character.

So this:
 - uses the termination character for true inter-commit spacing
 - uses a regular newline between the commit log and the diff

We had it the other way around.

For the normal case where the termination character is '\n', this 
obviously doesn't change anything at all, since we just switched two 
identical characters around. So it's very safe - it doesn't change any 
normal usage, but it definitely fixes "git log -z".

By fixing "git log -z", you can now also do insane things like

	git log -p -z |
		grep -z "some patch expression" |
		tr '\0' '\n' |
		less -S

and you will see only those commits that have the "some patch expression" 
in their commit message _or_ their patches.

(This is slightly different from 'git log -S"some patch expression"', 
since the latter requires the expression to literally *change* in the 
patch, while the "git log -p -z | grep .." approach will see it if it's 
just an unchanged _part_ of the patch context)

Of course, if you actually do something like the above, you're probably 
insane, but hey, it works!

Try the above command line for a demonstration (of course, you need to 
change the "some patch expression" to be something relevant). The old 
behaviour of "git log -p -z" was useless (and got things completely wrong 
for log entries without patches).

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---

On Wed, 7 Feb 2007, Linus Torvalds wrote:

Actually, the obvious fix was right, I just did the *wrong* obvious fix at 
first ;)

 log-tree.c |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/log-tree.c b/log-tree.c
index d8ca36b..85acd66 100644
--- a/log-tree.c
+++ b/log-tree.c
@@ -143,7 +143,7 @@ void show_log(struct rev_info *opt, const char *sep)
 	if (*sep != '\n' && opt->commit_format == CMIT_FMT_ONELINE)
 		extra = "\n";
 	if (opt->shown_one && opt->commit_format != CMIT_FMT_ONELINE)
-		putchar('\n');
+		putchar(opt->diffopt.line_termination);
 	opt->shown_one = 1;
 
 	/*
@@ -270,9 +270,8 @@ int log_tree_diff_flush(struct rev_info *opt)
 		    opt->commit_format != CMIT_FMT_ONELINE) {
 			int pch = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_PATCH;
 			if ((pch & opt->diffopt.output_format) == pch)
-				printf("---%c", opt->diffopt.line_termination);
-			else
-				putchar(opt->diffopt.line_termination);
+				printf("---");
+			putchar('\n');
 		}
 	}
 	diff_flush(&opt->diffopt);
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
git log filtering, Don Zickus, (Wed Feb 7, 12:41 pm)
Re: git log filtering, Linus Torvalds, (Wed Feb 7, 1:12 pm)
Re: git log filtering, Don Zickus, (Wed Feb 7, 2:19 pm)
Re: git log filtering, Linus Torvalds, (Wed Feb 7, 2:27 pm)
Re: git log filtering, Linus Torvalds, (Wed Feb 7, 2:16 pm)
Fix "git log -z" behaviour, Linus Torvalds, (Wed Feb 7, 3:49 pm)
Re: Fix "git log -z" behaviour, Junio C Hamano, (Thu Feb 8, 6:34 pm)
Re: Fix "git log -z" behaviour, Junio C Hamano, (Sat Feb 10, 3:32 am)
Re: Fix "git log -z" behaviour, Junio C Hamano, (Sat Feb 10, 5:36 am)
Re: Fix "git log -z" behaviour, Linus Torvalds, (Sat Feb 10, 1:09 pm)
Re: Fix "git log -z" behaviour, Don Zickus, (Wed Feb 7, 6:53 pm)
Re: Fix "git log -z" behaviour, Linus Torvalds, (Wed Feb 7, 7:05 pm)
Re: Fix "git log -z" behaviour, Junio C Hamano, (Wed Feb 7, 3:55 pm)
Re: git log filtering, Johannes Schindelin, (Wed Feb 7, 1:25 pm)
Re: git log filtering, Junio C Hamano, (Wed Feb 7, 4:47 pm)
Re: git log filtering, Linus Torvalds, (Wed Feb 7, 5:03 pm)
Re: git log filtering, Horst H. von Brand, (Wed Feb 7, 9:59 pm)
Re: git log filtering, Junio C Hamano, (Wed Feb 7, 5:09 pm)
Re: git log filtering, Linus Torvalds, (Wed Feb 7, 5:53 pm)
Re: git log filtering, Jeff King, (Thu Feb 8, 2:16 am)
pcre performance, was Re: git log filtering, Johannes Schindelin, (Wed Mar 7, 1:37 pm)
Re: pcre performance, was Re: git log filtering, Paolo Bonzini, (Wed Mar 7, 2:03 pm)
Re: git log filtering, Johannes Schindelin, (Thu Feb 8, 2:06 pm)
Re: git log filtering, Jeff King, (Thu Feb 8, 6:33 pm)
Re: git log filtering, Johannes Schindelin, (Thu Feb 8, 8:18 pm)
Re: git log filtering, Jeff King, (Thu Feb 8, 9:59 pm)
Re: git log filtering, Johannes Schindelin, (Fri Feb 9, 9:13 am)
Re: git log filtering, Jeff King, (Fri Feb 9, 9:22 am)
Re: git log filtering, Johannes Schindelin, (Fri Feb 9, 11:02 am)
Re: git log filtering, Shawn O. Pearce, (Thu Feb 8, 8:23 pm)
Re: git log filtering, Sergey Vlasov, (Fri Feb 9, 6:15 am)
Re: git log filtering, Johannes Schindelin, (Thu Feb 8, 8:45 pm)
Re: git log filtering, Jakub Narebski, (Wed Feb 7, 12:55 pm)
Re: git log filtering, Uwe , (Wed Feb 7, 1:01 pm)
Re: git log filtering, Johannes Schindelin, (Wed Feb 7, 1:12 pm)
speck-geostationary