diff options
author | Junio C Hamano <junkio@cox.net> | 2005-08-15 01:56:23 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-08-15 03:00:22 -0700 |
commit | 3998f8eba9f14efcb08468ecdbe2a69ed6da880d (patch) | |
tree | bb0010fb2b69c7479ecdb873e7c89d9cbcf4f390 /git-status-script | |
parent | 7c27558c6236225b07c5d5def76299d2b5fe7635 (diff) | |
download | git-3998f8eba9f14efcb08468ecdbe2a69ed6da880d.tar.gz |
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>
Diffstat (limited to 'git-status-script')
-rwxr-xr-x | git-status-script | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/git-status-script b/git-status-script index e9a0383441..947cc21975 100755 --- a/git-status-script +++ b/git-status-script @@ -1,4 +1,6 @@ #!/bin/sh +. git-sh-setup-script || die "Not a git archive" + report () { header="# # $1: @@ -26,7 +28,7 @@ report () { [ "$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" @@ -35,4 +37,10 @@ then 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 |