10 static const char http_fetch_usage
[] = "git http-fetch "
11 "[-c] [-t] [-a] [-v] [--recover] [-w ref] [--stdin | --packfile=hash | commit-id] url";
13 static int fetch_using_walker(const char *raw_url
, int get_verbosely
,
14 int get_recover
, int commits
, char **commit_id
,
15 const char **write_ref
, int commits_on_stdin
)
18 struct walker
*walker
;
21 str_end_url_with_slash(raw_url
, &url
);
23 http_init(NULL
, url
, 0);
25 walker
= get_http_walker(url
);
26 walker
->get_verbosely
= get_verbosely
;
27 walker
->get_recover
= get_recover
;
28 walker
->get_progress
= 0;
30 rc
= walker_fetch(walker
, commits
, commit_id
, write_ref
, url
);
33 walker_targets_free(commits
, commit_id
, write_ref
);
35 if (walker
->corrupt_object_found
) {
37 "Some loose object were found to be corrupt, but they might be just\n"
38 "a false '404 Not Found' error message sent with incorrect HTTP\n"
39 "status code. Suggest running 'git fsck'.\n");
49 static void fetch_single_packfile(struct object_id
*packfile_hash
,
51 const char **index_pack_args
) {
52 struct http_pack_request
*preq
;
53 struct slot_results results
;
56 http_init(NULL
, url
, 0);
58 preq
= new_direct_http_pack_request(packfile_hash
->hash
, xstrdup(url
));
60 die("couldn't create http pack request");
61 preq
->slot
->results
= &results
;
62 preq
->index_pack_args
= index_pack_args
;
63 preq
->preserve_index_pack_stdout
= 1;
65 if (start_active_slot(preq
->slot
)) {
66 run_active_slot(preq
->slot
);
67 if (results
.curl_result
!= CURLE_OK
) {
69 char *nurl
= url_normalize(preq
->url
, &url
);
70 if (!nurl
|| !git_env_bool("GIT_TRACE_REDACT", 1)) {
71 die("unable to get pack file '%s'\n%s", preq
->url
,
74 die("failed to get '%.*s' url from '%.*s' "
75 "(full URL redacted due to GIT_TRACE_REDACT setting)\n%s",
76 (int)url
.scheme_len
, url
.url
,
77 (int)url
.host_len
, &url
.url
[url
.host_off
], curl_errorstr
);
81 die("Unable to start request");
84 if ((ret
= finish_http_pack_request(preq
)))
85 die("finish_http_pack_request gave result %d", ret
);
87 release_http_pack_request(preq
);
91 int cmd_main(int argc
, const char **argv
)
93 int commits_on_stdin
= 0;
95 const char **write_ref
= NULL
;
98 int get_verbosely
= 0;
102 struct object_id packfile_hash
;
103 struct strvec index_pack_args
= STRVEC_INIT
;
105 setup_git_directory_gently(&nongit
);
107 while (arg
< argc
&& argv
[arg
][0] == '-') {
110 if (argv
[arg
][1] == 't') {
111 } else if (argv
[arg
][1] == 'c') {
112 } else if (argv
[arg
][1] == 'a') {
113 } else if (argv
[arg
][1] == 'v') {
115 } else if (argv
[arg
][1] == 'w') {
116 write_ref
= &argv
[arg
+ 1];
118 } else if (argv
[arg
][1] == 'h') {
119 usage(http_fetch_usage
);
120 } else if (!strcmp(argv
[arg
], "--recover")) {
122 } else if (!strcmp(argv
[arg
], "--stdin")) {
123 commits_on_stdin
= 1;
124 } else if (skip_prefix(argv
[arg
], "--packfile=", &p
)) {
128 if (parse_oid_hex(p
, &packfile_hash
, &end
) || *end
)
129 die(_("argument to --packfile must be a valid hash (got '%s')"), p
);
130 } else if (skip_prefix(argv
[arg
], "--index-pack-arg=", &p
)) {
131 strvec_push(&index_pack_args
, p
);
135 if (argc
!= arg
+ 2 - (commits_on_stdin
|| packfile
))
136 usage(http_fetch_usage
);
139 die(_("not a git repository"));
141 trace2_cmd_name("http-fetch");
143 git_config(git_default_config
, NULL
);
146 if (!index_pack_args
.nr
)
147 die(_("the option '%s' requires '%s'"), "--packfile", "--index-pack-args");
149 fetch_single_packfile(&packfile_hash
, argv
[arg
],
155 if (index_pack_args
.nr
)
156 die(_("the option '%s' requires '%s'"), "--index-pack-args", "--packfile");
158 if (commits_on_stdin
) {
159 commits
= walker_targets_stdin(&commit_id
, &write_ref
);
161 commit_id
= (char **) &argv
[arg
++];
164 return fetch_using_walker(argv
[arg
], get_verbosely
, get_recover
,
165 commits
, commit_id
, write_ref
,