summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2005-08-31 17:13:48 -0700
committerLibravatar Junio C Hamano <junkio@cox.net>2005-08-31 17:13:48 -0700
commit7e011c40bc6c7dbd48b033fb16c861b1166f808c (patch)
tree58a26ae0dfe322d540d001f116294c16cc7d3b1b
parentFix git-log-script when HEAD is invalid. (diff)
downloadtgif-7e011c40bc6c7dbd48b033fb16c861b1166f808c.tar.xz
Fix git-status when HEAD is invalid.
It tried to do git-diff-cache against HEAD, of course. Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-xgit-status-script20
1 files changed, 16 insertions, 4 deletions
diff --git a/git-status-script b/git-status-script
index 1696f23e04..2b029545de 100755
--- a/git-status-script
+++ b/git-status-script
@@ -39,11 +39,23 @@ esac
git-update-cache --refresh >/dev/null 2>&1
-git-diff-cache -M --cached HEAD |
-sed 's/^://' |
-report "Updated but not checked in" "will commit"
+if test -f "$GIT_DIR/HEAD"
+then
+ git-diff-cache -M --cached HEAD |
+ sed 's/^://' |
+ report "Updated but not checked in" "will commit"
-committable="$?"
+ committable="$?"
+else
+ echo '#
+# Initial commit
+#'
+ git-ls-files |
+ sed 's/^/o o o o A /' |
+ report "Updated but not checked in" "will commit"
+
+ committable="$?"
+fi
git-diff-files |
sed 's/^://' |