summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorRémi Vanicat <vanicat@debian.org>2007-11-11 12:28:08 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-11-11 23:41:07 (GMT)
commit859a4dbcadd200ae955fe36d0c4fb3f4bce0e032 (patch)
treebabf63124993a1254f51f68b1ec521e2543559ed /t
parenta91ef6e75b897a255cc17b70014a39e68dd54c7a (diff)
downloadgit-859a4dbcadd200ae955fe36d0c4fb3f4bce0e032.zip
git-859a4dbcadd200ae955fe36d0c4fb3f4bce0e032.tar.gz
git-859a4dbcadd200ae955fe36d0c4fb3f4bce0e032.tar.bz2
Make GIT_INDEX_FILE apply to git-commit
Currently, when committing, git-commit ignore the value of GIT_INDEX_FILE, and always use $GIT_DIR/index. This patch fix it. Signed-off-by: Rémi Vanicat <vanicat@debian.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t7500-commit.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/t/t7500-commit.sh b/t/t7500-commit.sh
index f11ada8..26bd8ee 100755
--- a/t/t7500-commit.sh
+++ b/t/t7500-commit.sh
@@ -93,4 +93,36 @@ test_expect_success 'commit message from file should override template' '
commit_msg_is "standard input msg<unknown>"
'
+test_expect_success 'using alternate GIT_INDEX_FILE (1)' '
+
+ cp .git/index saved-index &&
+ (
+ echo some new content >file &&
+ GIT_INDEX_FILE=.git/another_index &&
+ export GIT_INDEX_FILE &&
+ git add file &&
+ git commit -m "commit using another index" &&
+ git diff-index --exit-code HEAD &&
+ git diff-files --exit-code
+ ) &&
+ cmp .git/index saved-index >/dev/null
+
+'
+
+test_expect_success 'using alternate GIT_INDEX_FILE (2)' '
+
+ cp .git/index saved-index &&
+ (
+ rm -f .git/no-such-index &&
+ GIT_INDEX_FILE=.git/no-such-index &&
+ export GIT_INDEX_FILE &&
+ git commit -m "commit using nonexistent index" &&
+ test -z "$(git ls-files)" &&
+ test -z "$(git ls-tree HEAD)"
+
+ ) &&
+ cmp .git/index saved-index >/dev/null
+
+'
+
test_done