aboutsummaryrefslogtreecommitdiff
path: root/t/t5004-archive-corner-cases.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-09-02 13:27:12 -0700
committerJunio C Hamano <gitster@pobox.com>2014-09-02 13:27:13 -0700
commit4740891e47de5ee33d91ffa3fdde25e8f0c4af74 (patch)
tree896162195a2f0f720f182037e71a5050f68e1e70 /t/t5004-archive-corner-cases.sh
parent0e28161700885b01e997bb12546254b07b344849 (diff)
parent10f343ea814f5c18a0913997904ee11cd9b7da24 (diff)
downloadgit-4740891e47de5ee33d91ffa3fdde25e8f0c4af74.tar.gz
git-4740891e47de5ee33d91ffa3fdde25e8f0c4af74.tar.xz
Merge branch 'bc/archive-pax-header-mode'
Implementations of "tar" that do not understand an extended pax header would extract the contents of it in a regular file; make sure the permission bits of this file follows the same tar.umask configuration setting. * bc/archive-pax-header-mode: archive: honor tar.umask even for pax headers
Diffstat (limited to 't/t5004-archive-corner-cases.sh')
-rwxr-xr-xt/t5004-archive-corner-cases.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/t5004-archive-corner-cases.sh b/t/t5004-archive-corner-cases.sh
index 305bcac6b..83d20c4ba 100755
--- a/t/t5004-archive-corner-cases.sh
+++ b/t/t5004-archive-corner-cases.sh
@@ -113,4 +113,9 @@ test_expect_success 'archive empty subtree by direct pathspec' '
check_dir extract sub
'
+test_expect_success 'archive applies umask even for pax headers' '
+ git archive --format=tar HEAD >archive.tar &&
+ ! grep 0666 archive.tar
+'
+
test_done