OSDN Git Service

t2202: make sure "git add" (no args) stays a no-op
authorJunio C Hamano <gitster@pobox.com>
Sat, 20 Jul 2013 03:57:01 +0000 (20:57 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sat, 20 Jul 2013 04:32:33 +0000 (21:32 -0700)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t2202-add-addremove.sh

index 6a81510..fc8b59e 100755 (executable)
@@ -41,4 +41,14 @@ test_expect_success 'git add --all' '
        test_cmp expect actual
 '
 
+test_expect_success 'Just "git add" is a no-op' '
+       git reset --hard &&
+       echo >will-remove &&
+       >will-not-be-added &&
+       git add &&
+       git diff-index --name-status --cached HEAD >actual &&
+       >expect &&
+       test_cmp expect actual
+'
+
 test_done