diff-tree: don't print multiple headers for merges when silent.
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Sat, 21 May 2005 22:42:53 +0000 (15:42 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Sat, 21 May 2005 22:42:53 +0000 (15:42 -0700)
Normally we show every facet of a merge, but when we're silent,
there's little point.

diff-tree.c

index 73aa149..6818648 100644 (file)
@@ -414,8 +414,15 @@ static int diff_tree_commit(const unsigned char *commit, const char *name)
                        return -1;
                header = generate_header(name, sha1_to_hex(parent), buf, size);
                diff_tree_sha1_top(parent, commit, "");
-               if (!header && verbose_header)
+               if (!header && verbose_header) {
                        header_prefix = "\ndiff-tree ";
+                       /*
+                        * Don't print multiple merge entries if we
+                        * don't print the diffs.
+                        */
+                       if (silent)
+                               break;
+               }
                offset += 48;
        }
        return 0;