diff options
author | René Scharfe <rene.scharfe@lsrfire.ath.cx> | 2007-04-09 17:12:53 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-09 18:51:40 -0700 |
commit | 8ff21b1a3307c7059ea1e00b5117a50a2bc5fec8 (patch) | |
tree | 42ad4b42cd839195a95b427260975fd129566a41 /t/t5000-tar-tree.sh | |
parent | 5bcbc7ff1014c58e7296713926206bf6a69e0f4c (diff) | |
download | git-8ff21b1a3307c7059ea1e00b5117a50a2bc5fec8.tar.gz git-8ff21b1a3307c7059ea1e00b5117a50a2bc5fec8.tar.xz |
git-archive: make tar the default format
As noted by Junio, --format=tar should be assumed if no format
was specified.
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t5000-tar-tree.sh')
-rwxr-xr-x | t/t5000-tar-tree.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh index b4359df79..e223c074f 100755 --- a/t/t5000-tar-tree.sh +++ b/t/t5000-tar-tree.sh @@ -50,8 +50,16 @@ test_expect_success \ git-commit-tree $treeid </dev/null)' test_expect_success \ + 'git-archive' \ + 'git-archive HEAD >b.tar' + +test_expect_success \ 'git-tar-tree' \ - 'git-tar-tree HEAD >b.tar' + 'git-tar-tree HEAD >b2.tar' + +test_expect_success \ + 'git-archive vs. git-tar-tree' \ + 'diff b.tar b2.tar' test_expect_success \ 'validate file modification time' \ |