diff options
author | René Scharfe <rene.scharfe@lsrfire.ath.cx> | 2008-06-08 18:42:33 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-06-09 14:53:46 -0700 |
commit | 008d896df5deaa967d4d86306b408333e8ef34c3 (patch) | |
tree | c2b7aeaa45767e1c4e6359381b2bd99bd77dbebc /t | |
parent | 457bb452919887ff5e8007d02e93f443fdb6f1e9 (diff) | |
download | git-008d896df5deaa967d4d86306b408333e8ef34c3.tar.gz git-008d896df5deaa967d4d86306b408333e8ef34c3.tar.xz |
Teach new attribute 'export-ignore' to git-archive
Paths marked with this attribute are not output to git-archive
output.
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t5000-tar-tree.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh index 9b0baac8d..3f1e25d92 100755 --- a/t/t5000-tar-tree.sh +++ b/t/t5000-tar-tree.sh @@ -45,6 +45,11 @@ test_expect_success \ (cd a && find .) | sort >a.lst' test_expect_success \ + 'add ignored file' \ + 'echo ignore me >a/ignored && + echo ignored export-ignore >.gitattributes' + +test_expect_success \ 'add files to repository' \ 'find a -type f | xargs git update-index --add && find a -type l | xargs git update-index --add && @@ -54,6 +59,10 @@ test_expect_success \ git commit-tree $treeid </dev/null)' test_expect_success \ + 'remove ignored file' \ + 'rm a/ignored' + +test_expect_success \ 'git archive' \ 'git archive HEAD >b.tar' |