blob: 8686a7a7776652feaf16444fb3e4651393714db0 [file] [log] [blame]
Linus Torvalds755225d2006-04-29 21:22:49 -07001/*
2 * "git push"
3 */
4#include "cache.h"
5#include "refs.h"
6#include "run-command.h"
7#include "builtin.h"
Daniel Barkalow5751f492007-05-12 11:45:53 -04008#include "remote.h"
Daniel Barkalow9b288512007-09-10 23:03:04 -04009#include "transport.h"
Daniel Barkalow378c4832007-11-04 22:35:37 -050010#include "parse-options.h"
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +020011#include "submodule.h"
Linus Torvalds755225d2006-04-29 21:22:49 -070012
Daniel Barkalow378c4832007-11-04 22:35:37 -050013static const char * const push_usage[] = {
Nguyễn Thái Ngọc Duy78dafaa2012-08-20 19:32:33 +070014 N_("git push [<options>] [<repository> [<refspec>...]]"),
Daniel Barkalow378c4832007-11-04 22:35:37 -050015 NULL,
16};
Linus Torvalds755225d2006-04-29 21:22:49 -070017
Michele Ballabioc29c1b42008-07-20 14:02:20 +020018static int thin;
Jan Krügerf517f1f2009-12-30 20:57:42 +010019static int deleterefs;
Uwe Kleine-Königd23842f2007-01-19 13:49:27 +010020static const char *receivepack;
Tay Ray Chuan8afd8dc2010-02-24 20:50:24 +080021static int verbosity;
Clemens Buchacher01fdc212012-02-13 21:17:15 +010022static int progress = -1;
Linus Torvalds755225d2006-04-29 21:22:49 -070023
David Rientjes96f1e582006-08-15 10:23:48 -070024static const char **refspec;
25static int refspec_nr;
Jared Hance8a883b02010-07-31 08:54:55 -040026static int refspec_alloc;
Christopher Tiwaldf25950f2012-03-20 00:31:33 -040027static int default_matching_used;
Linus Torvalds755225d2006-04-29 21:22:49 -070028
29static void add_refspec(const char *ref)
30{
Jared Hance8a883b02010-07-31 08:54:55 -040031 refspec_nr++;
32 ALLOC_GROW(refspec, refspec_nr, refspec_alloc);
33 refspec[refspec_nr-1] = ref;
Linus Torvalds755225d2006-04-29 21:22:49 -070034}
35
Linus Torvalds755225d2006-04-29 21:22:49 -070036static void set_refspecs(const char **refs, int nr)
37{
Daniel Barkalow8558fd92007-05-25 01:20:56 -040038 int i;
39 for (i = 0; i < nr; i++) {
40 const char *ref = refs[i];
41 if (!strcmp("tag", ref)) {
42 char *tag;
43 int len;
44 if (nr <= ++i)
Ævar Arnfjörð Bjarmason8352d292011-02-22 23:42:11 +000045 die(_("tag shorthand without <tag>"));
Daniel Barkalow8558fd92007-05-25 01:20:56 -040046 len = strlen(refs[i]) + 11;
Jan Krügerf517f1f2009-12-30 20:57:42 +010047 if (deleterefs) {
48 tag = xmalloc(len+1);
49 strcpy(tag, ":refs/tags/");
50 } else {
51 tag = xmalloc(len);
52 strcpy(tag, "refs/tags/");
53 }
Daniel Barkalow8558fd92007-05-25 01:20:56 -040054 strcat(tag, refs[i]);
55 ref = tag;
Jan Krügerf517f1f2009-12-30 20:57:42 +010056 } else if (deleterefs && !strchr(ref, ':')) {
57 char *delref;
58 int len = strlen(ref)+1;
Jeff King7b48c172010-01-29 05:31:30 -050059 delref = xmalloc(len+1);
Jan Krügerf517f1f2009-12-30 20:57:42 +010060 strcpy(delref, ":");
61 strcat(delref, ref);
62 ref = delref;
63 } else if (deleterefs)
Ævar Arnfjörð Bjarmason8352d292011-02-22 23:42:11 +000064 die(_("--delete only accepts plain target ref names"));
Daniel Barkalow8558fd92007-05-25 01:20:56 -040065 add_refspec(ref);
Linus Torvalds755225d2006-04-29 21:22:49 -070066 }
Linus Torvalds755225d2006-04-29 21:22:49 -070067}
68
Junio C Hamano135dade2012-03-30 16:07:12 -070069static int push_url_of_remote(struct remote *remote, const char ***url_p)
70{
71 if (remote->pushurl_nr) {
72 *url_p = remote->pushurl;
73 return remote->pushurl_nr;
74 }
75 *url_p = remote->url;
76 return remote->url_nr;
77}
78
Matthieu Moyb55e6772012-04-24 09:50:03 +020079static NORETURN int die_push_simple(struct branch *branch, struct remote *remote) {
80 /*
81 * There's no point in using shorten_unambiguous_ref here,
82 * as the ambiguity would be on the remote side, not what
83 * we have locally. Plus, this is supposed to be the simple
84 * mode. If the user is doing something crazy like setting
85 * upstream to a non-branch, we should probably be showing
86 * them the big ugly fully qualified ref.
87 */
88 const char *advice_maybe = "";
89 const char *short_upstream =
90 skip_prefix(branch->merge[0]->src, "refs/heads/");
91
92 if (!short_upstream)
93 short_upstream = branch->merge[0]->src;
94 /*
95 * Don't show advice for people who explicitely set
96 * push.default.
97 */
98 if (push_default == PUSH_DEFAULT_UNSPECIFIED)
99 advice_maybe = _("\n"
100 "To choose either option permanently, "
101 "see push.default in 'git help config'.");
102 die(_("The upstream branch of your current branch does not match\n"
103 "the name of your current branch. To push to the upstream branch\n"
104 "on the remote, use\n"
105 "\n"
106 " git push %s HEAD:%s\n"
107 "\n"
108 "To push to the branch of the same name on the remote, use\n"
109 "\n"
110 " git push %s %s\n"
111 "%s"),
112 remote->name, short_upstream,
113 remote->name, branch->name, advice_maybe);
114}
115
116static void setup_push_upstream(struct remote *remote, int simple)
Finn Arne Gangstad52153742009-03-16 16:42:51 +0100117{
118 struct strbuf refspec = STRBUF_INIT;
119 struct branch *branch = branch_get(NULL);
120 if (!branch)
Junio C Hamano6c80cd22011-04-01 17:55:55 -0700121 die(_("You are not currently on a branch.\n"
Matthieu Moyec8460b2011-03-02 21:12:10 +0100122 "To push the history leading to the current (detached HEAD)\n"
123 "state now, use\n"
124 "\n"
Junio C Hamano6c80cd22011-04-01 17:55:55 -0700125 " git push %s HEAD:<name-of-remote-branch>\n"),
Matthieu Moyec8460b2011-03-02 21:12:10 +0100126 remote->name);
Junio C Hamano135dade2012-03-30 16:07:12 -0700127 if (!branch->merge_nr || !branch->merge || !branch->remote_name)
Junio C Hamano6c80cd22011-04-01 17:55:55 -0700128 die(_("The current branch %s has no upstream branch.\n"
Matthieu Moyec8460b2011-03-02 21:12:10 +0100129 "To push the current branch and set the remote as upstream, use\n"
130 "\n"
Junio C Hamano6c80cd22011-04-01 17:55:55 -0700131 " git push --set-upstream %s %s\n"),
Matthieu Moyec8460b2011-03-02 21:12:10 +0100132 branch->name,
133 remote->name,
Finn Arne Gangstad52153742009-03-16 16:42:51 +0100134 branch->name);
135 if (branch->merge_nr != 1)
Junio C Hamano6c80cd22011-04-01 17:55:55 -0700136 die(_("The current branch %s has multiple upstream branches, "
Ævar Arnfjörð Bjarmason8352d292011-02-22 23:42:11 +0000137 "refusing to push."), branch->name);
Junio C Hamano135dade2012-03-30 16:07:12 -0700138 if (strcmp(branch->remote_name, remote->name))
139 die(_("You are pushing to remote '%s', which is not the upstream of\n"
140 "your current branch '%s', without telling me what to push\n"
141 "to update which remote branch."),
142 remote->name, branch->name);
Matthieu Moyb55e6772012-04-24 09:50:03 +0200143 if (simple && strcmp(branch->refname, branch->merge[0]->src))
144 die_push_simple(branch, remote);
Junio C Hamano135dade2012-03-30 16:07:12 -0700145
Finn Arne Gangstad52153742009-03-16 16:42:51 +0100146 strbuf_addf(&refspec, "%s:%s", branch->name, branch->merge[0]->src);
147 add_refspec(refspec.buf);
148}
149
Matthieu Moyec8460b2011-03-02 21:12:10 +0100150static void setup_default_push_refspecs(struct remote *remote)
Finn Arne Gangstad52153742009-03-16 16:42:51 +0100151{
Finn Arne Gangstad52153742009-03-16 16:42:51 +0100152 switch (push_default) {
Junio C Hamanobba0fd22009-07-18 17:19:47 -0700153 default:
Christopher Tiwaldf25950f2012-03-20 00:31:33 -0400154 case PUSH_DEFAULT_UNSPECIFIED:
155 default_matching_used = 1;
156 /* fallthru */
Finn Arne Gangstad52153742009-03-16 16:42:51 +0100157 case PUSH_DEFAULT_MATCHING:
158 add_refspec(":");
159 break;
160
Matthieu Moyb55e6772012-04-24 09:50:03 +0200161 case PUSH_DEFAULT_SIMPLE:
162 setup_push_upstream(remote, 1);
163 break;
164
Johan Herland53c40312011-02-16 01:54:24 +0100165 case PUSH_DEFAULT_UPSTREAM:
Matthieu Moyb55e6772012-04-24 09:50:03 +0200166 setup_push_upstream(remote, 0);
Finn Arne Gangstad52153742009-03-16 16:42:51 +0100167 break;
168
169 case PUSH_DEFAULT_CURRENT:
170 add_refspec("HEAD");
171 break;
172
173 case PUSH_DEFAULT_NOTHING:
Ævar Arnfjörð Bjarmason8352d292011-02-22 23:42:11 +0000174 die(_("You didn't specify any refspecs to push, and "
175 "push.default is \"nothing\"."));
Finn Arne Gangstad52153742009-03-16 16:42:51 +0100176 break;
177 }
178}
179
Christopher Tiwaldf25950f2012-03-20 00:31:33 -0400180static const char message_advice_pull_before_push[] =
181 N_("Updates were rejected because the tip of your current branch is behind\n"
182 "its remote counterpart. Merge the remote changes (e.g. 'git pull')\n"
183 "before pushing again.\n"
184 "See the 'Note about fast-forwards' in 'git push --help' for details.");
185
186static const char message_advice_use_upstream[] =
187 N_("Updates were rejected because a pushed branch tip is behind its remote\n"
188 "counterpart. If you did not intend to push that branch, you may want to\n"
189 "specify branches to push or set the 'push.default' configuration\n"
190 "variable to 'current' or 'upstream' to push only the current branch.");
191
192static const char message_advice_checkout_pull_push[] =
193 N_("Updates were rejected because a pushed branch tip is behind its remote\n"
194 "counterpart. Check out this branch and merge the remote changes\n"
195 "(e.g. 'git pull') before pushing again.\n"
196 "See the 'Note about fast-forwards' in 'git push --help' for details.");
197
198static void advise_pull_before_push(void)
199{
200 if (!advice_push_non_ff_current || !advice_push_nonfastforward)
201 return;
202 advise(_(message_advice_pull_before_push));
203}
204
205static void advise_use_upstream(void)
206{
207 if (!advice_push_non_ff_default || !advice_push_nonfastforward)
208 return;
209 advise(_(message_advice_use_upstream));
210}
211
212static void advise_checkout_pull_push(void)
213{
214 if (!advice_push_non_ff_matching || !advice_push_nonfastforward)
215 return;
216 advise(_(message_advice_checkout_pull_push));
217}
218
Daniel Barkalowfb0cc872009-11-18 02:42:22 +0100219static int push_with_options(struct transport *transport, int flags)
220{
221 int err;
222 int nonfastforward;
Tay Ray Chuan8afd8dc2010-02-24 20:50:24 +0800223
Tay Ray Chuan78381062010-02-24 20:50:27 +0800224 transport_set_verbosity(transport, verbosity, progress);
Tay Ray Chuan8afd8dc2010-02-24 20:50:24 +0800225
Daniel Barkalowfb0cc872009-11-18 02:42:22 +0100226 if (receivepack)
227 transport_set_option(transport,
228 TRANS_OPT_RECEIVEPACK, receivepack);
229 if (thin)
230 transport_set_option(transport, TRANS_OPT_THIN, "yes");
231
Tay Ray Chuan8afd8dc2010-02-24 20:50:24 +0800232 if (verbosity > 0)
Ævar Arnfjörð Bjarmason8352d292011-02-22 23:42:11 +0000233 fprintf(stderr, _("Pushing to %s\n"), transport->url);
Daniel Barkalowfb0cc872009-11-18 02:42:22 +0100234 err = transport_push(transport, refspec_nr, refspec, flags,
235 &nonfastforward);
Tay Ray Chuan53970b92009-12-04 07:31:44 +0800236 if (err != 0)
Ævar Arnfjörð Bjarmason8352d292011-02-22 23:42:11 +0000237 error(_("failed to push some refs to '%s'"), transport->url);
Tay Ray Chuan53970b92009-12-04 07:31:44 +0800238
Daniel Barkalowfb0cc872009-11-18 02:42:22 +0100239 err |= transport_disconnect(transport);
Daniel Barkalowfb0cc872009-11-18 02:42:22 +0100240 if (!err)
241 return 0;
242
Christopher Tiwaldf25950f2012-03-20 00:31:33 -0400243 switch (nonfastforward) {
244 default:
245 break;
246 case NON_FF_HEAD:
247 advise_pull_before_push();
248 break;
249 case NON_FF_OTHER:
250 if (default_matching_used)
251 advise_use_upstream();
252 else
253 advise_checkout_pull_push();
254 break;
Daniel Barkalowfb0cc872009-11-18 02:42:22 +0100255 }
256
257 return 1;
258}
259
Daniel Barkalow9b288512007-09-10 23:03:04 -0400260static int do_push(const char *repo, int flags)
Linus Torvalds755225d2006-04-29 21:22:49 -0700261{
Daniel Barkalow5751f492007-05-12 11:45:53 -0400262 int i, errs;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400263 struct remote *remote = remote_get(repo);
Michael J Gruber20346232009-06-09 18:01:34 +0200264 const char **url;
265 int url_nr;
Linus Torvalds755225d2006-04-29 21:22:49 -0700266
Daniel Barkalowfa685bd2009-03-11 01:47:20 -0400267 if (!remote) {
268 if (repo)
Ævar Arnfjörð Bjarmason8352d292011-02-22 23:42:11 +0000269 die(_("bad repository '%s'"), repo);
Junio C Hamano6c80cd22011-04-01 17:55:55 -0700270 die(_("No configured push destination.\n"
Matthieu Moya3f5e7a2011-03-02 21:12:11 +0100271 "Either specify the URL from the command-line or configure a remote repository using\n"
272 "\n"
273 " git remote add <name> <url>\n"
274 "\n"
275 "and then push using the remote name\n"
276 "\n"
Junio C Hamano6c80cd22011-04-01 17:55:55 -0700277 " git push <name>\n"));
Daniel Barkalowfa685bd2009-03-11 01:47:20 -0400278 }
Linus Torvalds755225d2006-04-29 21:22:49 -0700279
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200280 if (remote->mirror)
281 flags |= (TRANSPORT_PUSH_MIRROR|TRANSPORT_PUSH_FORCE);
282
Marek Zawirskib259f092008-08-16 19:58:32 +0200283 if ((flags & TRANSPORT_PUSH_ALL) && refspec) {
284 if (!strcmp(*refspec, "refs/tags/*"))
Ævar Arnfjörð Bjarmason8352d292011-02-22 23:42:11 +0000285 return error(_("--all and --tags are incompatible"));
286 return error(_("--all can't be combined with refspecs"));
Marek Zawirskib259f092008-08-16 19:58:32 +0200287 }
288
289 if ((flags & TRANSPORT_PUSH_MIRROR) && refspec) {
290 if (!strcmp(*refspec, "refs/tags/*"))
Ævar Arnfjörð Bjarmason8352d292011-02-22 23:42:11 +0000291 return error(_("--mirror and --tags are incompatible"));
292 return error(_("--mirror can't be combined with refspecs"));
Marek Zawirskib259f092008-08-16 19:58:32 +0200293 }
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200294
295 if ((flags & (TRANSPORT_PUSH_ALL|TRANSPORT_PUSH_MIRROR)) ==
296 (TRANSPORT_PUSH_ALL|TRANSPORT_PUSH_MIRROR)) {
Ævar Arnfjörð Bjarmason8352d292011-02-22 23:42:11 +0000297 return error(_("--all and --mirror are incompatible"));
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200298 }
299
Finn Arne Gangstad52153742009-03-16 16:42:51 +0100300 if (!refspec && !(flags & TRANSPORT_PUSH_ALL)) {
301 if (remote->push_refspec_nr) {
302 refspec = remote->push_refspec;
303 refspec_nr = remote->push_refspec_nr;
304 } else if (!(flags & TRANSPORT_PUSH_MIRROR))
Matthieu Moyec8460b2011-03-02 21:12:10 +0100305 setup_default_push_refspecs(remote);
Daniel Barkalow5751f492007-05-12 11:45:53 -0400306 }
Junio C Hamanofd1d1b02007-04-06 23:04:53 -0700307 errs = 0;
Junio C Hamano135dade2012-03-30 16:07:12 -0700308 url_nr = push_url_of_remote(remote, &url);
Daniel Barkalowfb0cc872009-11-18 02:42:22 +0100309 if (url_nr) {
310 for (i = 0; i < url_nr; i++) {
311 struct transport *transport =
312 transport_get(remote, url[i]);
313 if (push_with_options(transport, flags))
314 errs++;
Matthieu Moy07436e42009-08-08 09:51:08 +0200315 }
Daniel Barkalowfb0cc872009-11-18 02:42:22 +0100316 } else {
317 struct transport *transport =
318 transport_get(remote, NULL);
319
320 if (push_with_options(transport, flags))
321 errs++;
Linus Torvalds755225d2006-04-29 21:22:49 -0700322 }
Junio C Hamanofd1d1b02007-04-06 23:04:53 -0700323 return !!errs;
Linus Torvalds755225d2006-04-29 21:22:49 -0700324}
325
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200326static int option_parse_recurse_submodules(const struct option *opt,
327 const char *arg, int unset)
328{
329 int *flags = opt->value;
Heiko Voigteb21c732012-03-29 09:21:24 +0200330
331 if (*flags & (TRANSPORT_RECURSE_SUBMODULES_CHECK |
332 TRANSPORT_RECURSE_SUBMODULES_ON_DEMAND))
333 die("%s can only be used once.", opt->long_name);
334
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200335 if (arg) {
336 if (!strcmp(arg, "check"))
337 *flags |= TRANSPORT_RECURSE_SUBMODULES_CHECK;
Heiko Voigteb21c732012-03-29 09:21:24 +0200338 else if (!strcmp(arg, "on-demand"))
339 *flags |= TRANSPORT_RECURSE_SUBMODULES_ON_DEMAND;
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200340 else
341 die("bad %s argument: %s", opt->long_name, arg);
342 } else
Heiko Voigteb21c732012-03-29 09:21:24 +0200343 die("option %s needs an argument (check|on-demand)",
344 opt->long_name);
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200345
346 return 0;
347}
348
Linus Torvaldsa633fca2006-07-28 22:44:25 -0700349int cmd_push(int argc, const char **argv, const char *prefix)
Linus Torvalds755225d2006-04-29 21:22:49 -0700350{
Daniel Barkalow9b288512007-09-10 23:03:04 -0400351 int flags = 0;
Daniel Barkalow378c4832007-11-04 22:35:37 -0500352 int tags = 0;
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200353 int rc;
Daniel Barkalow5751f492007-05-12 11:45:53 -0400354 const char *repo = NULL; /* default repository */
Daniel Barkalow378c4832007-11-04 22:35:37 -0500355 struct option options[] = {
Tay Ray Chuan8afd8dc2010-02-24 20:50:24 +0800356 OPT__VERBOSITY(&verbosity),
Nguyễn Thái Ngọc Duy78dafaa2012-08-20 19:32:33 +0700357 OPT_STRING( 0 , "repo", &repo, N_("repository"), N_("repository")),
358 OPT_BIT( 0 , "all", &flags, N_("push all refs"), TRANSPORT_PUSH_ALL),
359 OPT_BIT( 0 , "mirror", &flags, N_("mirror all refs"),
Michele Ballabioc29c1b42008-07-20 14:02:20 +0200360 (TRANSPORT_PUSH_MIRROR|TRANSPORT_PUSH_FORCE)),
Nguyễn Thái Ngọc Duy78dafaa2012-08-20 19:32:33 +0700361 OPT_BOOLEAN( 0, "delete", &deleterefs, N_("delete refs")),
362 OPT_BOOLEAN( 0 , "tags", &tags, N_("push tags (can't be used with --all or --mirror)")),
363 OPT_BIT('n' , "dry-run", &flags, N_("dry run"), TRANSPORT_PUSH_DRY_RUN),
364 OPT_BIT( 0, "porcelain", &flags, N_("machine-readable output"), TRANSPORT_PUSH_PORCELAIN),
365 OPT_BIT('f', "force", &flags, N_("force updates"), TRANSPORT_PUSH_FORCE),
366 { OPTION_CALLBACK, 0, "recurse-submodules", &flags, N_("check"),
Nguyễn Thái Ngọc Duyf63cf8c2012-08-20 19:32:55 +0700367 N_("control recursive pushing of submodules"),
Fredrik Gustafssond2b17b32011-08-20 00:08:47 +0200368 PARSE_OPT_OPTARG, option_parse_recurse_submodules },
Nguyễn Thái Ngọc Duy78dafaa2012-08-20 19:32:33 +0700369 OPT_BOOLEAN( 0 , "thin", &thin, N_("use thin pack")),
370 OPT_STRING( 0 , "receive-pack", &receivepack, "receive-pack", N_("receive pack program")),
371 OPT_STRING( 0 , "exec", &receivepack, "receive-pack", N_("receive pack program")),
372 OPT_BIT('u', "set-upstream", &flags, N_("set upstream for git pull/status"),
Ilari Liusvaarae9fcd1e2010-01-16 23:45:31 +0200373 TRANSPORT_PUSH_SET_UPSTREAM),
Nguyễn Thái Ngọc Duy78dafaa2012-08-20 19:32:33 +0700374 OPT_BOOL(0, "progress", &progress, N_("force progress reporting")),
375 OPT_BIT(0, "prune", &flags, N_("prune locally removed refs"),
Felipe Contreras6ddba5e2012-02-23 00:43:41 +0200376 TRANSPORT_PUSH_PRUNE),
Daniel Barkalow378c4832007-11-04 22:35:37 -0500377 OPT_END()
378 };
Linus Torvalds755225d2006-04-29 21:22:49 -0700379
Jeff Kingbbc30f92011-02-24 09:30:19 -0500380 packet_trace_identity("push");
Jeff King2aae9052009-10-25 15:15:22 -0400381 git_config(git_default_config, NULL);
Stephen Boyd37782922009-05-23 11:53:12 -0700382 argc = parse_options(argc, argv, prefix, options, push_usage, 0);
Daniel Barkalow378c4832007-11-04 22:35:37 -0500383
Jan Krügerf517f1f2009-12-30 20:57:42 +0100384 if (deleterefs && (tags || (flags & (TRANSPORT_PUSH_ALL | TRANSPORT_PUSH_MIRROR))))
Ævar Arnfjörð Bjarmason8352d292011-02-22 23:42:11 +0000385 die(_("--delete is incompatible with --all, --mirror and --tags"));
Jan Krügerf517f1f2009-12-30 20:57:42 +0100386 if (deleterefs && argc < 2)
Ævar Arnfjörð Bjarmason8352d292011-02-22 23:42:11 +0000387 die(_("--delete doesn't make sense without any refs"));
Jan Krügerf517f1f2009-12-30 20:57:42 +0100388
Daniel Barkalow378c4832007-11-04 22:35:37 -0500389 if (tags)
390 add_refspec("refs/tags/*");
Daniel Barkalow378c4832007-11-04 22:35:37 -0500391
392 if (argc > 0) {
393 repo = argv[0];
394 set_refspecs(argv + 1, argc - 1);
Linus Torvalds755225d2006-04-29 21:22:49 -0700395 }
Daniel Barkalow8558fd92007-05-25 01:20:56 -0400396
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200397 rc = do_push(repo, flags);
398 if (rc == -1)
Andy Whitcroft94c89ba2007-11-09 23:32:25 +0000399 usage_with_options(push_usage, options);
Paolo Bonzini84bb2df2008-04-17 13:17:20 +0200400 else
401 return rc;
Linus Torvalds755225d2006-04-29 21:22:49 -0700402}