Signed-off-by: Alexander Kuleshov <kuleshovmail@xxxxxxxxx> --- t/t3700-add.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/t/t3700-add.sh b/t/t3700-add.sh index f7ff1f5..6f71c67 100755 --- a/t/t3700-add.sh +++ b/t/t3700-add.sh @@ -332,4 +332,22 @@ test_expect_success 'git add --dry-run --ignore-missing of non-existing file out test_i18ncmp expect.err actual.err ' +test_expect_success 'Test that "git add --exclude" works' ' + >foo && + >bar && + git add --exclude=bar . && + ! (git ls-files | grep bar) + (git ls-files | grep foo) +' + +test_expect_success 'Test multiply --exclude' ' + >foo && + >bar && + >"b a z" && + git add --exclude="bar" --exclude="b a z" . && + (git ls-files | grep foo) + ! (git ls-files | grep "b a z") + ! (git ls-files | grep "baz") +' + test_done -- 2.3.3.472.g20ceeac.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html