summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-01-10 18:33:03 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-01-10 18:33:03 (GMT)
commit4ba46c28471b94de561d00f8b01da79b59527c62 (patch)
tree288962cb17e69b5f144e179fec91baceadcfc6a0 /t
parent0c52457b7c6311d004d0fb1f5b7bb7d5cc6dbf4e (diff)
parent64ed07cee0394509c65331f1e7acb36c58fd18fb (diff)
downloadgit-4ba46c28471b94de561d00f8b01da79b59527c62.zip
git-4ba46c28471b94de561d00f8b01da79b59527c62.tar.gz
git-4ba46c28471b94de561d00f8b01da79b59527c62.tar.bz2
Merge branch 'nd/add-empty-fix'
"git add -A" (no other arguments) in a totally empty working tree used to emit an error. * nd/add-empty-fix: add: don't complain when adding empty project root
Diffstat (limited to 't')
-rwxr-xr-xt/t3700-add.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/t/t3700-add.sh b/t/t3700-add.sh
index aab86e8..fe274e2 100755
--- a/t/t3700-add.sh
+++ b/t/t3700-add.sh
@@ -272,6 +272,25 @@ test_expect_success '"add non-existent" should fail' '
! (git ls-files | grep "non-existent")
'
+test_expect_success 'git add -A on empty repo does not error out' '
+ rm -fr empty &&
+ git init empty &&
+ (
+ cd empty &&
+ git add -A . &&
+ git add -A
+ )
+'
+
+test_expect_success '"git add ." in empty repo' '
+ rm -fr empty &&
+ git init empty &&
+ (
+ cd empty &&
+ git add .
+ )
+'
+
test_expect_success 'git add --dry-run of existing changed file' "
echo new >>track-this &&
git add --dry-run track-this >actual 2>&1 &&