aboutsummaryrefslogtreecommitdiff
path: root/git-commit.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-11-14 14:25:33 -0800
committerJunio C Hamano <gitster@pobox.com>2007-11-14 14:25:33 -0800
commit43f36901c5e4d54de2c3b7c5d62af59382df717c (patch)
tree133b1cc2ae6d0e97fdcb1a88b2e4df0796cf2590 /git-commit.sh
parent9f165805f3bde8cd91653f2db1c35a4548b85625 (diff)
parent859a4dbcadd200ae955fe36d0c4fb3f4bce0e032 (diff)
downloadgit-43f36901c5e4d54de2c3b7c5d62af59382df717c.tar.gz
git-43f36901c5e4d54de2c3b7c5d62af59382df717c.tar.xz
Merge branch 'rv/maint-index-commit'
* rv/maint-index-commit: Make GIT_INDEX_FILE apply to git-commit
Diffstat (limited to 'git-commit.sh')
-rwxr-xr-xgit-commit.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-commit.sh b/git-commit.sh
index fcb8443bd..6490045d3 100755
--- a/git-commit.sh
+++ b/git-commit.sh
@@ -26,7 +26,7 @@ refuse_partial () {
}
TMP_INDEX=
-THIS_INDEX="$GIT_DIR/index"
+THIS_INDEX="${GIT_INDEX_FILE:-$GIT_DIR/index}"
NEXT_INDEX="$GIT_DIR/next-index$$"
rm -f "$NEXT_INDEX"
save_index () {