Skip to content

Commit ac7fa27

Browse files
René Scharfegitster
authored andcommitted
git-archive: ignore prefix when checking file attribute
Ulrik Sverdrup noticed that git-archive doesn't correctly apply the attribute export-subst when the option --prefix is given, too. When it checked if a file has the attribute turned on, git-archive would try to look up the full path -- including the prefix -- in .gitattributes. That's wrong, as the prefix doesn't need to have any relation to any existing directories, tracked or not. This patch makes git-archive ignore the prefix when looking up if value of the attribute export-subst for a file. Signed-off-by: Rene Scharfe <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 3f36cbb commit ac7fa27

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

archive-tar.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ static time_t archive_time;
1717
static int tar_umask = 002;
1818
static int verbose;
1919
static const struct commit *commit;
20+
static size_t base_len;
2021

2122
/* writes out the whole block, but only if it is full */
2223
static void write_if_needed(void)
@@ -251,8 +252,8 @@ static int write_tar_entry(const unsigned char *sha1,
251252
buffer = NULL;
252253
size = 0;
253254
} else {
254-
buffer = sha1_file_to_archive(path.buf, sha1, mode, &type,
255-
&size, commit);
255+
buffer = sha1_file_to_archive(path.buf + base_len, sha1, mode,
256+
&type, &size, commit);
256257
if (!buffer)
257258
die("cannot read %s", sha1_to_hex(sha1));
258259
}
@@ -272,6 +273,7 @@ int write_tar_archive(struct archiver_args *args)
272273
archive_time = args->time;
273274
verbose = args->verbose;
274275
commit = args->commit;
276+
base_len = args->base ? strlen(args->base) : 0;
275277

276278
if (args->commit_sha1)
277279
write_global_extended_header(args->commit_sha1);

archive-zip.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ static int verbose;
1313
static int zip_date;
1414
static int zip_time;
1515
static const struct commit *commit;
16+
static size_t base_len;
1617

1718
static unsigned char *zip_dir;
1819
static unsigned int zip_dir_size;
@@ -197,8 +198,8 @@ static int write_zip_entry(const unsigned char *sha1,
197198
if (S_ISREG(mode) && zlib_compression_level != 0)
198199
method = 8;
199200
result = 0;
200-
buffer = sha1_file_to_archive(path, sha1, mode, &type, &size,
201-
commit);
201+
buffer = sha1_file_to_archive(path + base_len, sha1, mode,
202+
&type, &size, commit);
202203
if (!buffer)
203204
die("cannot read %s", sha1_to_hex(sha1));
204205
crc = crc32(crc, buffer, size);
@@ -321,6 +322,7 @@ int write_zip_archive(struct archiver_args *args)
321322
zip_dir_size = ZIP_DIRECTORY_MIN_SIZE;
322323
verbose = args->verbose;
323324
commit = args->commit;
325+
base_len = args->base ? strlen(args->base) : 0;
324326

325327
if (args->base && plen > 0 && args->base[plen - 1] == '/') {
326328
char *base = xstrdup(args->base);

t/t5000-tar-tree.sh

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,10 @@ test_expect_success \
109109
'diff -r a c/prefix/a'
110110

111111
test_expect_success \
112-
'create an archive with a substfiles' \
112+
'create archives with substfiles' \
113113
'echo "substfile?" export-subst >a/.gitattributes &&
114114
git archive HEAD >f.tar &&
115+
git archive --prefix=prefix/ HEAD >g.tar &&
115116
rm a/.gitattributes'
116117

117118
test_expect_success \
@@ -126,6 +127,18 @@ test_expect_success \
126127
diff a/substfile2 f/a/substfile2
127128
'
128129

130+
test_expect_success \
131+
'extract substfiles from archive with prefix' \
132+
'(mkdir g && cd g && $TAR xf -) <g.tar'
133+
134+
test_expect_success \
135+
'validate substfile contents from archive with prefix' \
136+
'git log --max-count=1 "--pretty=format:A${SUBSTFORMAT}O" HEAD \
137+
>g/prefix/a/substfile1.expected &&
138+
diff g/prefix/a/substfile1.expected g/prefix/a/substfile1 &&
139+
diff a/substfile2 g/prefix/a/substfile2
140+
'
141+
129142
test_expect_success \
130143
'git archive --format=zip' \
131144
'git archive --format=zip HEAD >d.zip'

0 commit comments

Comments
 (0)