diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-06-30 20:55:40 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-06-30 20:55:40 +0200 |
commit | 2927a507bf8080661ed84000ce55465941bd28a9 (patch) | |
tree | 6abfc037ab5ff89d614674f9283432756dc704da /commit.h | |
parent | Merge branch 'mg/doc-rev-parse-treepath-syntax' (diff) | |
parent | Add test for correct coloring of git log --decoration (diff) | |
download | git-2927a507bf8080661ed84000ce55465941bd28a9.tar.xz git-2927a507bf8080661ed84000ce55465941bd28a9.zip |
Merge branch 'ar/decorate-color'
* ar/decorate-color:
Add test for correct coloring of git log --decoration
Allow customizable commit decorations colors
log --decorate: Colorize commit decorations
log-tree.c: Use struct name_decoration's type for classifying decoration
commit.h: add 'type' to struct name_decoration
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -28,6 +28,7 @@ extern const char *commit_type; extern struct decoration name_decoration; struct name_decoration { struct name_decoration *next; + int type; char name[1]; }; |