Show which branch you are on in git-status output.

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>
This commit is contained in:
Junio C Hamano 2005-08-15 01:56:23 -07:00
parent 7c27558c62
commit 3998f8eba9

View File

@ -1,4 +1,6 @@
#!/bin/sh #!/bin/sh
. git-sh-setup-script || die "Not a git archive"
report () { report () {
header="# header="#
# $1: # $1:
@ -26,7 +28,7 @@ report () {
[ "$header" ] [ "$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" git-diff-cache -M --cached HEAD | sed 's/^://' | report "Updated but not checked in" "will commit"
committable="$?" committable="$?"
git-diff-files | sed 's/^://' | report "Changed but not updated" "use git-update-cache to mark for commit" git-diff-files | sed 's/^://' | report "Changed but not updated" "use git-update-cache to mark for commit"
@ -35,4 +37,10 @@ then
echo "nothing to commit" echo "nothing to commit"
exit 1 exit 1
fi fi
branch=`readlink "$GIT_DIR/HEAD"`
case "$branch" in
refs/heads/master) ;;
*) echo "#
# On branch $branch" ;;
esac
exit 0 exit 0