summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7c27558)
raw | patch | inline | side by side (parent: 7c27558)
author | Junio C Hamano <junkio@cox.net> | |
Mon, 15 Aug 2005 08:56:23 +0000 (01:56 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Mon, 15 Aug 2005 10:00:22 +0000 (03:00 -0700) |
When not on the "master" branch, show which branch we are
working on in the git-status message.
Signed-off-by: Junio C Hamano <junkio@cox.net>
working on in the git-status message.
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-status-script | patch | blob | history |
diff --git a/git-status-script b/git-status-script
index e9a03834415e926e8f42df9c0f699204af51fec9..947cc219752ce3f099ca182e32e684f09ab4c1db 100755 (executable)
--- a/git-status-script
+++ b/git-status-script
#!/bin/sh
+. git-sh-setup-script || die "Not a git archive"
+
report () {
header="#
# $1:
[ "$header" ]
}
-git-update-cache --refresh >& /dev/null
+git-update-cache --refresh >/dev/null 2>&1
git-diff-cache -M --cached HEAD | sed 's/^://' | report "Updated but not checked in" "will commit"
committable="$?"
git-diff-files | sed 's/^://' | report "Changed but not updated" "use git-update-cache to mark for commit"
echo "nothing to commit"
exit 1
fi
+branch=`readlink "$GIT_DIR/HEAD"`
+case "$branch" in
+refs/heads/master) ;;
+*) echo "#
+# On branch $branch" ;;
+esac
exit 0