test: fix t7001 cp to use POSIX options
[git.git] / builtin / send-pack.c
blob4482f16efb66c7fc06c7446a2e992840cc83f798
1 #include "builtin.h"
2 #include "commit.h"
3 #include "refs.h"
4 #include "pkt-line.h"
5 #include "sideband.h"
6 #include "run-command.h"
7 #include "remote.h"
8 #include "connect.h"
9 #include "send-pack.h"
10 #include "quote.h"
11 #include "transport.h"
12 #include "version.h"
14 static const char send_pack_usage[] =
15 "git send-pack [--all | --mirror] [--dry-run] [--force] [--receive-pack=<git-receive-pack>] [--verbose] [--thin] [<host>:]<directory> [<ref>...]\n"
16 " --all and explicit <ref> specification are mutually exclusive.";
18 static struct send_pack_args args;
20 static void print_helper_status(struct ref *ref)
22 struct strbuf buf = STRBUF_INIT;
24 for (; ref; ref = ref->next) {
25 const char *msg = NULL;
26 const char *res;
28 switch(ref->status) {
29 case REF_STATUS_NONE:
30 res = "error";
31 msg = "no match";
32 break;
34 case REF_STATUS_OK:
35 res = "ok";
36 break;
38 case REF_STATUS_UPTODATE:
39 res = "ok";
40 msg = "up to date";
41 break;
43 case REF_STATUS_REJECT_NONFASTFORWARD:
44 res = "error";
45 msg = "non-fast forward";
46 break;
48 case REF_STATUS_REJECT_FETCH_FIRST:
49 res = "error";
50 msg = "fetch first";
51 break;
53 case REF_STATUS_REJECT_NEEDS_FORCE:
54 res = "error";
55 msg = "needs force";
56 break;
58 case REF_STATUS_REJECT_STALE:
59 res = "error";
60 msg = "stale info";
61 break;
63 case REF_STATUS_REJECT_ALREADY_EXISTS:
64 res = "error";
65 msg = "already exists";
66 break;
68 case REF_STATUS_REJECT_NODELETE:
69 case REF_STATUS_REMOTE_REJECT:
70 res = "error";
71 break;
73 case REF_STATUS_EXPECTING_REPORT:
74 default:
75 continue;
78 strbuf_reset(&buf);
79 strbuf_addf(&buf, "%s %s", res, ref->name);
80 if (ref->remote_status)
81 msg = ref->remote_status;
82 if (msg) {
83 strbuf_addch(&buf, ' ');
84 quote_two_c_style(&buf, "", msg, 0);
86 strbuf_addch(&buf, '\n');
88 write_or_die(1, buf.buf, buf.len);
90 strbuf_release(&buf);
93 int cmd_send_pack(int argc, const char **argv, const char *prefix)
95 int i, nr_refspecs = 0;
96 const char **refspecs = NULL;
97 const char *remote_name = NULL;
98 struct remote *remote = NULL;
99 const char *dest = NULL;
100 int fd[2];
101 struct child_process *conn;
102 struct extra_have_objects extra_have;
103 struct ref *remote_refs, *local_refs;
104 int ret;
105 int helper_status = 0;
106 int send_all = 0;
107 const char *receivepack = "git-receive-pack";
108 int flags;
109 unsigned int reject_reasons;
110 int progress = -1;
111 struct push_cas_option cas = {0};
113 argv++;
114 for (i = 1; i < argc; i++, argv++) {
115 const char *arg = *argv;
117 if (*arg == '-') {
118 if (!prefixcmp(arg, "--receive-pack=")) {
119 receivepack = arg + 15;
120 continue;
122 if (!prefixcmp(arg, "--exec=")) {
123 receivepack = arg + 7;
124 continue;
126 if (!prefixcmp(arg, "--remote=")) {
127 remote_name = arg + 9;
128 continue;
130 if (!strcmp(arg, "--all")) {
131 send_all = 1;
132 continue;
134 if (!strcmp(arg, "--dry-run")) {
135 args.dry_run = 1;
136 continue;
138 if (!strcmp(arg, "--mirror")) {
139 args.send_mirror = 1;
140 continue;
142 if (!strcmp(arg, "--force")) {
143 args.force_update = 1;
144 continue;
146 if (!strcmp(arg, "--quiet")) {
147 args.quiet = 1;
148 continue;
150 if (!strcmp(arg, "--verbose")) {
151 args.verbose = 1;
152 continue;
154 if (!strcmp(arg, "--progress")) {
155 progress = 1;
156 continue;
158 if (!strcmp(arg, "--no-progress")) {
159 progress = 0;
160 continue;
162 if (!strcmp(arg, "--thin")) {
163 args.use_thin_pack = 1;
164 continue;
166 if (!strcmp(arg, "--stateless-rpc")) {
167 args.stateless_rpc = 1;
168 continue;
170 if (!strcmp(arg, "--helper-status")) {
171 helper_status = 1;
172 continue;
174 if (!strcmp(arg, "--" CAS_OPT_NAME)) {
175 if (parse_push_cas_option(&cas, NULL, 0) < 0)
176 exit(1);
177 continue;
179 if (!strcmp(arg, "--no-" CAS_OPT_NAME)) {
180 if (parse_push_cas_option(&cas, NULL, 1) < 0)
181 exit(1);
182 continue;
184 if (!prefixcmp(arg, "--" CAS_OPT_NAME "=")) {
185 if (parse_push_cas_option(&cas,
186 strchr(arg, '=') + 1, 0) < 0)
187 exit(1);
188 continue;
190 usage(send_pack_usage);
192 if (!dest) {
193 dest = arg;
194 continue;
196 refspecs = (const char **) argv;
197 nr_refspecs = argc - i;
198 break;
200 if (!dest)
201 usage(send_pack_usage);
203 * --all and --mirror are incompatible; neither makes sense
204 * with any refspecs.
206 if ((refspecs && (send_all || args.send_mirror)) ||
207 (send_all && args.send_mirror))
208 usage(send_pack_usage);
210 if (remote_name) {
211 remote = remote_get(remote_name);
212 if (!remote_has_url(remote, dest)) {
213 die("Destination %s is not a uri for %s",
214 dest, remote_name);
218 if (progress == -1)
219 progress = !args.quiet && isatty(2);
220 args.progress = progress;
222 if (args.stateless_rpc) {
223 conn = NULL;
224 fd[0] = 0;
225 fd[1] = 1;
226 } else {
227 conn = git_connect(fd, dest, receivepack,
228 args.verbose ? CONNECT_VERBOSE : 0);
231 memset(&extra_have, 0, sizeof(extra_have));
233 get_remote_heads(fd[0], NULL, 0, &remote_refs, REF_NORMAL, &extra_have);
235 transport_verify_remote_names(nr_refspecs, refspecs);
237 local_refs = get_local_heads();
239 flags = MATCH_REFS_NONE;
241 if (send_all)
242 flags |= MATCH_REFS_ALL;
243 if (args.send_mirror)
244 flags |= MATCH_REFS_MIRROR;
246 /* match them up */
247 if (match_push_refs(local_refs, &remote_refs, nr_refspecs, refspecs, flags))
248 return -1;
250 if (!is_empty_cas(&cas))
251 apply_push_cas(&cas, remote, remote_refs);
253 set_ref_status_for_push(remote_refs, args.send_mirror,
254 args.force_update);
256 ret = send_pack(&args, fd, conn, remote_refs, &extra_have);
258 if (helper_status)
259 print_helper_status(remote_refs);
261 close(fd[1]);
262 close(fd[0]);
264 ret |= finish_connect(conn);
266 if (!helper_status)
267 transport_print_push_status(dest, remote_refs, args.verbose, 0, &reject_reasons);
269 if (!args.dry_run && remote) {
270 struct ref *ref;
271 for (ref = remote_refs; ref; ref = ref->next)
272 transport_update_tracking_ref(remote, ref, args.verbose);
275 if (!ret && !transport_refs_pushed(remote_refs))
276 fprintf(stderr, "Everything up-to-date\n");
278 return ret;