From: Alexander Hirsch <1zeeky@xxxxxxxxx> git status -bs (--branch --short) does not seem to allow customization of the colors for the local and remote branch. This patch adds these via the color.status.local and color.status.remote config variables. Given the trivial nature of this patch I did not write a test for it. I did a small check that it's working so, to be on the safe side. Signed-off-by: Alexander Hirsch <1zeeky@xxxxxxxxx> --- Documentation/config.txt | 7 +++++-- builtin/commit.c | 4 ++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Documentation/config.txt b/Documentation/config.txt index d4d93c9..261fc99 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -904,9 +904,12 @@ color.status.<slot>:: `added` or `updated` (files which are added but not committed), `changed` (files which are changed but not added in the index), `untracked` (files which are not tracked by Git), - `branch` (the current branch), or + `branch` (the current branch), `nobranch` (the color the 'no branch' warning is shown in, defaulting - to red). The values of these variables may be specified as in + to red), + `local` (the local branch when showing branch info), or + `remote` (the remote-tracked branch when showing branch info). + The values of these variables may be specified as in color.branch.<slot>. color.ui:: diff --git a/builtin/commit.c b/builtin/commit.c index 6ab4605..43365b4 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -1165,6 +1165,10 @@ static int parse_status_slot(const char *var, int offset) return WT_STATUS_HEADER; if (!strcasecmp(var+offset, "branch")) return WT_STATUS_ONBRANCH; + if (!strcasecmp(var+offset, "local")) + return WT_STATUS_LOCAL_BRANCH; + if (!strcasecmp(var+offset, "remote")) + return WT_STATUS_REMOTE_BRANCH; if (!strcasecmp(var+offset, "updated") || !strcasecmp(var+offset, "added")) return WT_STATUS_UPDATED; -- 1.8.4.1 -- 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