diff options
author | Jeff King <peff@peff.net> | 2007-05-12 02:42:00 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-12 01:01:28 -0700 |
commit | 93c44d493b8c98b9bb74e4f78aa90ee20a01f078 (patch) | |
tree | 82750c971ef1c4e9d2448ec9d2773f29ae01919f /t | |
parent | 16a4c6176ad096881d0021f1a922fbcc2835f799 (diff) | |
download | git-93c44d493b8c98b9bb74e4f78aa90ee20a01f078.tar.gz git-93c44d493b8c98b9bb74e4f78aa90ee20a01f078.tar.xz |
git-add: allow path limiting with -u
Rather than updating all working tree paths, we limit
ourselves to paths listed on the command line.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't')
-rwxr-xr-x | t/t2200-add-update.sh | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/t/t2200-add-update.sh b/t/t2200-add-update.sh new file mode 100755 index 000000000..83005e70d --- /dev/null +++ b/t/t2200-add-update.sh @@ -0,0 +1,38 @@ +#!/bin/sh + +test_description='git-add -u with path limiting + +This test creates a working tree state with three files: + + top (previously committed, modified) + dir/sub (previously committed, modified) + dir/other (untracked) + +and issues a git-add -u with path limiting on "dir" to add +only the updates to dir/sub.' + +. ./test-lib.sh + +test_expect_success 'setup' ' +echo initial >top && +mkdir dir && +echo initial >dir/sub && +git-add dir/sub top && +git-commit -m initial && +echo changed >top && +echo changed >dir/sub && +echo other >dir/other +' + +test_expect_success 'update' 'git-add -u dir' + +test_expect_success 'update touched correct path' \ + 'test "`git-diff-files --name-status dir/sub`" = ""' + +test_expect_success 'update did not touch other tracked files' \ + 'test "`git-diff-files --name-status top`" = "M top"' + +test_expect_success 'update did not touch untracked files' \ + 'test "`git-diff-files --name-status dir/other`" = ""' + +test_done |