提交 3998f8eb 编写于 作者: J Junio C Hamano

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: NJunio C Hamano <junkio@cox.net>
上级 7c27558c
#!/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
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册