From: Matthias Kestenholz <matthias@xxxxxxxxxxx> Signed-off-by: Matthias Kestenholz <matthias@xxxxxxxxxxx> --- builtin-branch.c | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/builtin-branch.c b/builtin-branch.c index 089cae5..448144f 100644 --- a/builtin-branch.c +++ b/builtin-branch.c @@ -31,7 +31,6 @@ static unsigned char head_sha1[20]; static int branch_track = 1; -static int branch_use_color; static char branch_colors[][COLOR_MAXLEN] = { "\033[m", /* reset */ "", /* PLAIN (normal) */ @@ -65,7 +64,7 @@ static int parse_branch_color_slot(const char *var, int ofs) static int git_branch_config(const char *var, const char *value) { if (!strcmp(var, "color.branch")) { - branch_use_color = git_config_colorbool(var, value, -1); + git_use_color = git_config_colorbool(var, value, -1); return 0; } if (!prefixcmp(var, "color.branch.")) { @@ -76,12 +75,12 @@ static int git_branch_config(const char *var, const char *value) if (!strcmp(var, "branch.autosetupmerge")) branch_track = git_config_bool(var, value); - return git_default_config(var, value); + return git_color_default_config(var, value); } static const char *branch_get_color(enum color_branch ix) { - if (branch_use_color) + if (git_use_color > 0) return branch_colors[ix]; return ""; } @@ -559,7 +558,7 @@ int cmd_branch(int argc, const char **argv, const char *prefix) OPT_GROUP("Generic options"), OPT__VERBOSE(&verbose), OPT_BOOLEAN( 0 , "track", &track, "set up tracking mode (see git-pull(1))"), - OPT_BOOLEAN( 0 , "color", &branch_use_color, "use colored output"), + OPT_BOOLEAN( 0 , "color", &git_use_color, "use colored output"), OPT_SET_INT('r', NULL, &kinds, "act on remote-tracking branches", REF_REMOTE_BRANCH), OPT_CALLBACK(0, "contains", &with_commit, "commit", @@ -585,6 +584,8 @@ int cmd_branch(int argc, const char **argv, const char *prefix) }; git_config(git_branch_config); + git_color_config(); + track = branch_track; argc = parse_options(argc, argv, options, builtin_branch_usage, 0); if (!!delete + !!rename + !!force_create > 1) -- 1.5.4.rc2.1104.gec8ae5-dirty - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html