7 #include "run-command.h"
10 #include "send-pack.h"
12 #include "transport.h"
14 #include "oid-array.h"
15 #include "gpg-interface.h"
19 static const char * const send_pack_usage
[] = {
20 N_("git send-pack [--all | --mirror] [--dry-run] [--force] "
21 "[--receive-pack=<git-receive-pack>] [--verbose] [--thin] [--atomic] "
22 "[<host>:]<directory> [<ref>...]\n"
23 " --all and explicit <ref> specification are mutually exclusive."),
27 static struct send_pack_args args
;
29 static void print_helper_status(struct ref
*ref
)
31 struct strbuf buf
= STRBUF_INIT
;
32 struct ref_push_report
*report
;
34 for (; ref
; ref
= ref
->next
) {
35 const char *msg
= NULL
;
49 case REF_STATUS_UPTODATE
:
54 case REF_STATUS_REJECT_NONFASTFORWARD
:
56 msg
= "non-fast forward";
59 case REF_STATUS_REJECT_FETCH_FIRST
:
64 case REF_STATUS_REJECT_NEEDS_FORCE
:
69 case REF_STATUS_REJECT_STALE
:
74 case REF_STATUS_REJECT_REMOTE_UPDATED
:
76 msg
= "remote ref updated since checkout";
79 case REF_STATUS_REJECT_ALREADY_EXISTS
:
81 msg
= "already exists";
84 case REF_STATUS_REJECT_NODELETE
:
85 case REF_STATUS_REMOTE_REJECT
:
89 case REF_STATUS_EXPECTING_REPORT
:
95 strbuf_addf(&buf
, "%s %s", res
, ref
->name
);
96 if (ref
->remote_status
)
97 msg
= ref
->remote_status
;
99 strbuf_addch(&buf
, ' ');
100 quote_two_c_style(&buf
, "", msg
, 0);
102 strbuf_addch(&buf
, '\n');
104 if (ref
->status
== REF_STATUS_OK
) {
105 for (report
= ref
->report
; report
; report
= report
->next
) {
107 strbuf_addf(&buf
, "ok %s\n", ref
->name
);
108 if (report
->ref_name
)
109 strbuf_addf(&buf
, "option refname %s\n",
112 strbuf_addf(&buf
, "option old-oid %s\n",
113 oid_to_hex(report
->old_oid
));
115 strbuf_addf(&buf
, "option new-oid %s\n",
116 oid_to_hex(report
->new_oid
));
117 if (report
->forced_update
)
118 strbuf_addstr(&buf
, "option forced-update\n");
121 write_or_die(1, buf
.buf
, buf
.len
);
123 strbuf_release(&buf
);
126 static int send_pack_config(const char *k
, const char *v
, void *cb
)
128 git_gpg_config(k
, v
, NULL
);
130 if (!strcmp(k
, "push.gpgsign")) {
132 if (!git_config_get_value("push.gpgsign", &value
)) {
133 switch (git_parse_maybe_bool(value
)) {
135 args
.push_cert
= SEND_PACK_PUSH_CERT_NEVER
;
138 args
.push_cert
= SEND_PACK_PUSH_CERT_ALWAYS
;
141 if (value
&& !strcasecmp(value
, "if-asked"))
142 args
.push_cert
= SEND_PACK_PUSH_CERT_IF_ASKED
;
144 return error("Invalid value for '%s'", k
);
148 return git_default_config(k
, v
, cb
);
151 int cmd_send_pack(int argc
, const char **argv
, const char *prefix
)
153 struct refspec rs
= REFSPEC_INIT_PUSH
;
154 const char *remote_name
= NULL
;
155 struct remote
*remote
= NULL
;
156 const char *dest
= NULL
;
158 struct child_process
*conn
;
159 struct oid_array extra_have
= OID_ARRAY_INIT
;
160 struct oid_array shallow
= OID_ARRAY_INIT
;
161 struct ref
*remote_refs
, *local_refs
;
163 int helper_status
= 0;
166 const char *receivepack
= "git-receive-pack";
167 unsigned dry_run
= 0;
168 unsigned send_mirror
= 0;
169 unsigned force_update
= 0;
172 struct string_list push_options
= STRING_LIST_INIT_NODUP
;
173 unsigned use_thin_pack
= 0;
175 unsigned stateless_rpc
= 0;
177 unsigned int reject_reasons
;
180 struct push_cas_option cas
= {0};
181 int force_if_includes
= 0;
182 struct packet_reader reader
;
184 struct option options
[] = {
185 OPT__VERBOSITY(&verbose
),
186 OPT_STRING(0, "receive-pack", &receivepack
, "receive-pack", N_("receive pack program")),
187 OPT_STRING(0, "exec", &receivepack
, "receive-pack", N_("receive pack program")),
188 OPT_STRING(0, "remote", &remote_name
, "remote", N_("remote name")),
189 OPT_BOOL(0, "all", &send_all
, N_("push all refs")),
190 OPT_BOOL('n' , "dry-run", &dry_run
, N_("dry run")),
191 OPT_BOOL(0, "mirror", &send_mirror
, N_("mirror all refs")),
192 OPT_BOOL('f', "force", &force_update
, N_("force updates")),
193 OPT_CALLBACK_F(0, "signed", &push_cert
, "(yes|no|if-asked)", N_("GPG sign the push"),
194 PARSE_OPT_OPTARG
, option_parse_push_signed
),
195 OPT_STRING_LIST(0, "push-option", &push_options
,
196 N_("server-specific"),
197 N_("option to transmit")),
198 OPT_BOOL(0, "progress", &progress
, N_("force progress reporting")),
199 OPT_BOOL(0, "thin", &use_thin_pack
, N_("use thin pack")),
200 OPT_BOOL(0, "atomic", &atomic
, N_("request atomic transaction on remote side")),
201 OPT_BOOL(0, "stateless-rpc", &stateless_rpc
, N_("use stateless RPC protocol")),
202 OPT_BOOL(0, "stdin", &from_stdin
, N_("read refs from stdin")),
203 OPT_BOOL(0, "helper-status", &helper_status
, N_("print status from remote helper")),
204 OPT_CALLBACK_F(0, CAS_OPT_NAME
, &cas
, N_("<refname>:<expect>"),
205 N_("require old value of ref to be at this value"),
206 PARSE_OPT_OPTARG
, parseopt_push_cas_option
),
207 OPT_BOOL(0, TRANS_OPT_FORCE_IF_INCLUDES
, &force_if_includes
,
208 N_("require remote updates to be integrated locally")),
212 git_config(send_pack_config
, NULL
);
213 argc
= parse_options(argc
, argv
, prefix
, options
, send_pack_usage
, 0);
216 refspec_appendn(&rs
, argv
+ 1, argc
- 1);
220 usage_with_options(send_pack_usage
, options
);
222 args
.verbose
= verbose
;
223 args
.dry_run
= dry_run
;
224 args
.send_mirror
= send_mirror
;
225 args
.force_update
= force_update
;
227 args
.push_cert
= push_cert
;
228 args
.progress
= progress
;
229 args
.use_thin_pack
= use_thin_pack
;
230 args
.atomic
= atomic
;
231 args
.stateless_rpc
= stateless_rpc
;
232 args
.push_options
= push_options
.nr
? &push_options
: NULL
;
235 if (args
.stateless_rpc
) {
237 while ((buf
= packet_read_line(0, NULL
)))
238 refspec_append(&rs
, buf
);
240 struct strbuf line
= STRBUF_INIT
;
241 while (strbuf_getline(&line
, stdin
) != EOF
)
242 refspec_append(&rs
, line
.buf
);
243 strbuf_release(&line
);
248 * --all and --mirror are incompatible; neither makes sense
251 if ((rs
.nr
> 0 && (send_all
|| args
.send_mirror
)) ||
252 (send_all
&& args
.send_mirror
))
253 usage_with_options(send_pack_usage
, options
);
256 remote
= remote_get(remote_name
);
257 if (!remote_has_url(remote
, dest
)) {
258 die("Destination %s is not a uri for %s",
264 progress
= !args
.quiet
&& isatty(2);
265 args
.progress
= progress
;
267 if (args
.stateless_rpc
) {
272 conn
= git_connect(fd
, dest
, receivepack
,
273 args
.verbose
? CONNECT_VERBOSE
: 0);
276 packet_reader_init(&reader
, fd
[0], NULL
, 0,
277 PACKET_READ_CHOMP_NEWLINE
|
278 PACKET_READ_GENTLE_ON_EOF
|
279 PACKET_READ_DIE_ON_ERR_PACKET
);
281 switch (discover_version(&reader
)) {
283 die("support for protocol v2 not implemented yet");
287 get_remote_heads(&reader
, &remote_refs
, REF_NORMAL
,
288 &extra_have
, &shallow
);
290 case protocol_unknown_version
:
291 BUG("unknown protocol version");
294 local_refs
= get_local_heads();
296 flags
= MATCH_REFS_NONE
;
299 flags
|= MATCH_REFS_ALL
;
300 if (args
.send_mirror
)
301 flags
|= MATCH_REFS_MIRROR
;
304 if (match_push_refs(local_refs
, &remote_refs
, &rs
, flags
))
307 if (!is_empty_cas(&cas
))
308 apply_push_cas(&cas
, remote
, remote_refs
);
310 if (!is_empty_cas(&cas
) && force_if_includes
)
311 cas
.use_force_if_includes
= 1;
313 set_ref_status_for_push(remote_refs
, args
.send_mirror
,
316 ret
= send_pack(&args
, fd
, conn
, remote_refs
, &extra_have
);
319 print_helper_status(remote_refs
);
324 ret
|= finish_connect(conn
);
327 transport_print_push_status(dest
, remote_refs
, args
.verbose
, 0, &reject_reasons
);
329 if (!args
.dry_run
&& remote
) {
331 for (ref
= remote_refs
; ref
; ref
= ref
->next
)
332 transport_update_tracking_ref(remote
, ref
, args
.verbose
);
335 if (!ret
&& !transport_refs_pushed(remote_refs
))
336 fprintf(stderr
, "Everything up-to-date\n");