summaryrefslogtreecommitdiff
path: root/t/t9700-perl-git.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-05-23 01:38:28 -0700
committerJunio C Hamano <gitster@pobox.com>2009-05-23 01:38:28 -0700
commit9d764f9538f63d654a1147e11920c2bc36b75194 (patch)
tree8f7c0f6f83e57a033cd0e4dfee7fdb249905c29c /t/t9700-perl-git.sh
parent77ce907786d2c4a7789e81c83a28e829c36fab30 (diff)
parentfe53bbc9bebb853f97f0da3f63f7fca5774e3f95 (diff)
Merge branch 'fl/git-pm'
* fl/git-pm: Git.pm: Always set Repository to absolute path if autodetecting Git.pm: Set GIT_WORK_TREE if we set GIT_DIR
Diffstat (limited to 't/t9700-perl-git.sh')
-rwxr-xr-xt/t9700-perl-git.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t9700-perl-git.sh b/t/t9700-perl-git.sh
index b4ca244626..4eb7d3f7f0 100755
--- a/t/t9700-perl-git.sh
+++ b/t/t9700-perl-git.sh
@@ -29,6 +29,10 @@ test_expect_success \
git add . &&
git commit -m "first commit" &&
+ echo "new file in subdir 2" > directory2/file2 &&
+ git add . &&
+ git commit -m "commit in directory2" &&
+
echo "changed file 1" > file1 &&
git commit -a -m "second commit" &&