提交 25487bde 编写于 作者: J Junio C Hamano

t2200: test more cases of "add -u"

Signed-off-by: NJunio C Hamano <gitster@pobox.com>
上级 fb63d7f8
#!/bin/sh
test_description='git add -u with path limiting
test_description='git add -u
This test creates a working tree state with three files:
......@@ -9,7 +9,10 @@ This test creates a working tree state with three files:
dir/other (untracked)
and issues a git add -u with path limiting on "dir" to add
only the updates to dir/sub.'
only the updates to dir/sub.
Also tested are "git add -u" without limiting, and "git add -u"
without contents changes.'
. ./test-lib.sh
......@@ -85,4 +88,27 @@ test_expect_success 'replace a file with a symlink' '
'
test_expect_success 'add everything changed' '
git add -u &&
test -z "$(git diff-files)"
'
test_expect_success 'touch and then add -u' '
touch check &&
git add -u &&
test -z "$(git diff-files)"
'
test_expect_success 'touch and then add explicitly' '
touch check &&
git add check &&
test -z "$(git diff-files)"
'
test_done
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册