4 int cmd_http_fetch(int argc
, const char **argv
, const char *prefix
)
7 int commits_on_stdin
= 0;
9 const char **write_ref
= NULL
;
17 int get_verbosely
= 0;
20 git_config(git_default_config
);
22 while (arg
< argc
&& argv
[arg
][0] == '-') {
23 if (argv
[arg
][1] == 't') {
25 } else if (argv
[arg
][1] == 'c') {
27 } else if (argv
[arg
][1] == 'a') {
31 } else if (argv
[arg
][1] == 'v') {
33 } else if (argv
[arg
][1] == 'w') {
34 write_ref
= &argv
[arg
+ 1];
36 } else if (!strcmp(argv
[arg
], "--recover")) {
38 } else if (!strcmp(argv
[arg
], "--stdin")) {
43 if (argc
< arg
+ 2 - commits_on_stdin
) {
44 usage("git-http-fetch [-c] [-t] [-a] [-v] [--recover] [-w ref] [--stdin] commit-id url");
47 if (commits_on_stdin
) {
48 commits
= walker_targets_stdin(&commit_id
, &write_ref
);
50 commit_id
= (char **) &argv
[arg
++];
55 walker
= get_http_walker(url
);
56 walker
->get_tree
= get_tree
;
57 walker
->get_history
= get_history
;
58 walker
->get_all
= get_all
;
59 walker
->get_verbosely
= get_verbosely
;
60 walker
->get_recover
= get_recover
;
62 rc
= walker_fetch(walker
, commits
, commit_id
, write_ref
, url
);
65 walker_targets_free(commits
, commit_id
, write_ref
);
67 if (walker
->corrupt_object_found
) {
69 "Some loose object were found to be corrupt, but they might be just\n"
70 "a false '404 Not Found' error message sent with incorrect HTTP\n"
71 "status code. Suggest running git-fsck.\n");