Git development
 help / color / mirror / Atom feed
* [patch] color of branches in git status -sb
@ 2011-11-17  0:39 Nicolas Dudebout
  2011-11-17  1:13 ` Junio C Hamano
  0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Dudebout @ 2011-11-17  0:39 UTC (permalink / raw)
  To: git

The following patch fixes the fact that two colors of the status
output could not be configured in .git/config.

The color of the current branch could not be modified because of the
name WT_STATUS_ONBRANCH having been changed to WT_STATUS_LOCAL_BRANCH.

The color of the remote branch was not defined at all.

By the way, when I do 'git status' instead of git 'status -sb' the
local and remote branch do not get colored. Is this a desired
behavior?

Nicolas

	Modified   Documentation/config.txt
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 5a841da..7a0ddd6 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -809 +809,2 @@ color.status.<slot>::
-	`branch` (the current branch), or
+	`branch` (the current branch),
+        `remote` (the remote branch) or
	Modified   builtin/commit.c
diff --git a/builtin/commit.c b/builtin/commit.c
index c46f2d1..4674600 100644
--- a/builtin/commit.c
+++ b/builtin/commit.c
@@ -1118 +1118,3 @@ static int parse_status_slot(const char *var, int offset)
-		return WT_STATUS_ONBRANCH;
+		return WT_STATUS_LOCAL_BRANCH;
+	if (!strcasecmp(var+offset, "remote"))
+		return WT_STATUS_REMOTE_BRANCH;

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-11-17 14:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-17  0:39 [patch] color of branches in git status -sb Nicolas Dudebout
2011-11-17  1:13 ` Junio C Hamano
2011-11-17  2:25   ` Nicolas Dudebout
2011-11-17 10:55     ` Jonathan Nieder
2011-11-17 14:16       ` Nicolas Dudebout

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox