From b78422df85c0afe1352e82507f26729f68a657c0 Mon Sep 17 00:00:00 2001 From: Matt Hunter Date: Sat, 28 Feb 2026 11:38:43 -0500 Subject: Change missing upstream default indicator color to yellow The logic here is similar as for %{condition} rendering to yellow. The missing remote branch is an unexpected/abnormal state and yellow has more consistently conveyed this in the past in git-sonar. Signed-off-by: Matt Hunter --- git-sonar | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-sonar b/git-sonar index 5fee51f..5243ec7 100755 --- a/git-sonar +++ b/git-sonar @@ -34,7 +34,7 @@ prepare_colors() { COLOR_REMOTE_AHEAD="\x01${GIT_RADAR_COLOR_REMOTE_AHEAD:-"\\033[1;32m"}\x02" COLOR_REMOTE_BEHIND="\x01${GIT_RADAR_COLOR_REMOTE_BEHIND:-"\\033[1;31m"}\x02" COLOR_REMOTE_DIVERGED="\x01${GIT_RADAR_COLOR_REMOTE_DIVERGED:-"\\033[1;33m"}\x02" - COLOR_REMOTE_NOT_UPSTREAM="\x01${GIT_RADAR_COLOR_REMOTE_NOT_UPSTREAM:-"\\033[1;31m"}\x02" + COLOR_REMOTE_NOT_UPSTREAM="\x01${GIT_RADAR_COLOR_REMOTE_NOT_UPSTREAM:-"\\033[1;33m"}\x02" COLOR_LOCAL_AHEAD="\x01${GIT_RADAR_COLOR_LOCAL_AHEAD:-"\\033[1;32m"}\x02" COLOR_LOCAL_BEHIND="\x01${GIT_RADAR_COLOR_LOCAL_BEHIND:-"\\033[1;31m"}\x02" -- cgit v1.2.3