Skip to content

Commit 00436bf

Browse files
steadmongitster
authored andcommitted
archive: initialize archivers earlier
Initialize archivers as soon as possible when running git-archive. Various non-obvious behavior depends on having the archivers initialized, such as determining the desired archival format from the provided filename. Since 08716b3 ("archive: refactor file extension format-guessing", 2011-06-21), archive_format_from_filename() has used the registered archivers to match filenames (provided via --output) to archival formats. However, when git-archive is executed with --remote, format detection happens before the archivers have been registered. This causes archives from remotes to always be generated as TAR files, regardless of the actual filename (unless an explicit --format is provided). This patch fixes that behavior; archival format is determined properly from the output filename, even when --remote is used. Helped-by: Jeff King <[email protected]> Signed-off-by: Josh Steadmon <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent c4df23f commit 00436bf

6 files changed

+23
-4
lines changed

archive.c

+6-3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ void register_archiver(struct archiver *ar)
2929
archivers[nr_archivers++] = ar;
3030
}
3131

32+
void init_archivers(void)
33+
{
34+
init_tar_archiver();
35+
init_zip_archiver();
36+
}
37+
3238
static void format_subst(const struct commit *commit,
3339
const char *src, size_t len,
3440
struct strbuf *buf)
@@ -531,9 +537,6 @@ int write_archive(int argc, const char **argv, const char *prefix,
531537
git_config_get_bool("uploadarchive.allowunreachable", &remote_allow_unreachable);
532538
git_config(git_default_config, NULL);
533539

534-
init_tar_archiver();
535-
init_zip_archiver();
536-
537540
args.repo = repo;
538541
argc = parse_archive_args(argc, argv, &ar, &args, name_hint, remote);
539542
if (!startup_info->have_repository) {

archive.h

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ extern void register_archiver(struct archiver *);
4343

4444
extern void init_tar_archiver(void);
4545
extern void init_zip_archiver(void);
46+
extern void init_archivers(void);
4647

4748
typedef int (*write_archive_entry_fn_t)(struct archiver_args *args,
4849
const struct object_id *oid,

builtin/archive.c

+2
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ int cmd_archive(int argc, const char **argv, const char *prefix)
9797
argc = parse_options(argc, argv, prefix, local_opts, NULL,
9898
PARSE_OPT_KEEP_ALL);
9999

100+
init_archivers();
101+
100102
if (output)
101103
create_output_file(output);
102104

builtin/upload-archive.c

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ int cmd_upload_archive_writer(int argc, const char **argv, const char *prefix)
2828
if (!enter_repo(argv[1], 0))
2929
die("'%s' does not appear to be a git repository", argv[1]);
3030

31+
init_archivers();
32+
3133
/* put received options in sent_argv[] */
3234
argv_array_push(&sent_argv, "git-upload-archive");
3335
for (;;) {

t/t5000-tar-tree.sh

+6
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,12 @@ test_expect_success 'git archive with --output, override inferred format' '
206206
test_cmp_bin b.tar d4.zip
207207
'
208208

209+
test_expect_success GZIP 'git archive with --output and --remote creates .tgz' '
210+
git archive --output=d5.tgz --remote=. HEAD &&
211+
gzip -d -c <d5.tgz >d5.tar &&
212+
test_cmp_bin b.tar d5.tar
213+
'
214+
209215
test_expect_success 'git archive --list outside of a git repo' '
210216
nongit git archive --list
211217
'

t/t5003-archive-zip.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -158,11 +158,16 @@ test_expect_success 'git archive --format=zip with --output' \
158158
'git archive --format=zip --output=d2.zip HEAD &&
159159
test_cmp_bin d.zip d2.zip'
160160

161-
test_expect_success 'git archive with --output, inferring format' '
161+
test_expect_success 'git archive with --output, inferring format (local)' '
162162
git archive --output=d3.zip HEAD &&
163163
test_cmp_bin d.zip d3.zip
164164
'
165165

166+
test_expect_success 'git archive with --output, inferring format (remote)' '
167+
git archive --remote=. --output=d4.zip HEAD &&
168+
test_cmp_bin d.zip d4.zip
169+
'
170+
166171
test_expect_success \
167172
'git archive --format=zip with prefix' \
168173
'git archive --format=zip --prefix=prefix/ HEAD >e.zip'

0 commit comments

Comments
 (0)