diff options
author | Ramkumar Ramachandra <artagnon@gmail.com> | 2012-11-13 21:12:47 +0530 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-11-18 19:18:13 -0800 |
commit | 4e215131d2543a28a065c5161438c315316f9961 (patch) | |
tree | 37f5f596557b6e15824b4ea1f0e76e8ad141b3b6 /diff.c | |
parent | d9c552f17a28e5ab1b72135038d4888ea02651ea (diff) | |
download | git-4e215131d2543a28a065c5161438c315316f9961.tar.gz git-4e215131d2543a28a065c5161438c315316f9961.tar.xz |
submodule: display summary header in bold
Currently, 'git diff --submodule' displays output with a bold diff
header for non-submodules. So this part is in bold:
diff --git a/file1 b/file1
index 30b2f6c..2638038 100644
--- a/file1
+++ b/file1
For submodules, the header looks like this:
Submodule submodule1 012b072..248d0fd:
Unfortunately, it's easy to miss in the output because it's not bold.
Change this.
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Acked-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diff.c')
-rw-r--r-- | diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2259,7 +2259,7 @@ static void builtin_diff(const char *name_a, const char *add = diff_get_color_opt(o, DIFF_FILE_NEW); show_submodule_summary(o->file, one ? one->path : two->path, one->sha1, two->sha1, two->dirty_submodule, - del, add, reset); + meta, del, add, reset); return; } |