]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-push.c
builtin-merge.c: Fix option parsing
[thirdparty/git.git] / builtin-push.c
CommitLineData
755225de
LT
1/*
2 * "git push"
3 */
4#include "cache.h"
5#include "refs.h"
6#include "run-command.h"
7#include "builtin.h"
5751f490 8#include "remote.h"
9b288516 9#include "transport.h"
378c4832 10#include "parse-options.h"
755225de 11
378c4832 12static const char * const push_usage[] = {
1b1dd23f 13 "git push [--all | --mirror] [--dry-run] [--tags] [--receive-pack=<git-receive-pack>] [--repo=all] [-f | --force] [-v] [<repository> <refspec>...]",
378c4832
DB
14 NULL,
15};
755225de 16
18184f79 17static int thin, verbose;
d23842fd 18static const char *receivepack;
755225de 19
96f1e58f
DR
20static const char **refspec;
21static int refspec_nr;
755225de
LT
22
23static void add_refspec(const char *ref)
24{
25 int nr = refspec_nr + 1;
26 refspec = xrealloc(refspec, nr * sizeof(char *));
27 refspec[nr-1] = ref;
28 refspec_nr = nr;
29}
30
755225de
LT
31static void set_refspecs(const char **refs, int nr)
32{
8558fd9e
DB
33 int i;
34 for (i = 0; i < nr; i++) {
35 const char *ref = refs[i];
36 if (!strcmp("tag", ref)) {
37 char *tag;
38 int len;
39 if (nr <= ++i)
40 die("tag shorthand without <tag>");
41 len = strlen(refs[i]) + 11;
42 tag = xmalloc(len);
43 strcpy(tag, "refs/tags/");
44 strcat(tag, refs[i]);
45 ref = tag;
411fb8ba 46 }
8558fd9e 47 add_refspec(ref);
755225de 48 }
755225de
LT
49}
50
9b288516 51static int do_push(const char *repo, int flags)
755225de 52{
5751f490 53 int i, errs;
5751f490 54 struct remote *remote = remote_get(repo);
755225de 55
5751f490 56 if (!remote)
755225de
LT
57 die("bad repository '%s'", repo);
58
84bb2dfd
PB
59 if (remote->mirror)
60 flags |= (TRANSPORT_PUSH_MIRROR|TRANSPORT_PUSH_FORCE);
61
62 if ((flags & (TRANSPORT_PUSH_ALL|TRANSPORT_PUSH_MIRROR)) && refspec)
63 return -1;
64
65 if ((flags & (TRANSPORT_PUSH_ALL|TRANSPORT_PUSH_MIRROR)) ==
66 (TRANSPORT_PUSH_ALL|TRANSPORT_PUSH_MIRROR)) {
67 return error("--all and --mirror are incompatible");
68 }
69
18184f79
SP
70 if (!refspec
71 && !(flags & TRANSPORT_PUSH_ALL)
72 && remote->push_refspec_nr) {
8558fd9e
DB
73 refspec = remote->push_refspec;
74 refspec_nr = remote->push_refspec_nr;
5751f490 75 }
fd1d1b05 76 errs = 0;
28b91f8a 77 for (i = 0; i < remote->url_nr; i++) {
9b288516 78 struct transport *transport =
28b91f8a 79 transport_get(remote, remote->url[i]);
60b7f38e 80 int err;
9b288516
DB
81 if (receivepack)
82 transport_set_option(transport,
83 TRANS_OPT_RECEIVEPACK, receivepack);
84 if (thin)
85 transport_set_option(transport, TRANS_OPT_THIN, "yes");
86
bcc785f6 87 if (verbose)
28b91f8a 88 fprintf(stderr, "Pushing to %s\n", remote->url[i]);
9b288516
DB
89 err = transport_push(transport, refspec_nr, refspec, flags);
90 err |= transport_disconnect(transport);
91
60b7f38e 92 if (!err)
755225de 93 continue;
39878b0c 94
2b8130c3 95 error("failed to push some refs to '%s'", remote->url[i]);
fd1d1b05 96 errs++;
755225de 97 }
fd1d1b05 98 return !!errs;
755225de
LT
99}
100
a633fca0 101int cmd_push(int argc, const char **argv, const char *prefix)
755225de 102{
9b288516 103 int flags = 0;
378c4832 104 int all = 0;
94c89ba6 105 int mirror = 0;
378c4832
DB
106 int dry_run = 0;
107 int force = 0;
108 int tags = 0;
84bb2dfd 109 int rc;
5751f490 110 const char *repo = NULL; /* default repository */
755225de 111
378c4832
DB
112 struct option options[] = {
113 OPT__VERBOSE(&verbose),
114 OPT_STRING( 0 , "repo", &repo, "repository", "repository"),
115 OPT_BOOLEAN( 0 , "all", &all, "push all refs"),
94c89ba6 116 OPT_BOOLEAN( 0 , "mirror", &mirror, "mirror all refs"),
378c4832
DB
117 OPT_BOOLEAN( 0 , "tags", &tags, "push tags"),
118 OPT_BOOLEAN( 0 , "dry-run", &dry_run, "dry run"),
119 OPT_BOOLEAN('f', "force", &force, "force updates"),
120 OPT_BOOLEAN( 0 , "thin", &thin, "use thin pack"),
121 OPT_STRING( 0 , "receive-pack", &receivepack, "receive-pack", "receive pack program"),
122 OPT_STRING( 0 , "exec", &receivepack, "receive-pack", "receive pack program"),
123 OPT_END()
124 };
755225de 125
378c4832
DB
126 argc = parse_options(argc, argv, options, push_usage, 0);
127
128 if (force)
129 flags |= TRANSPORT_PUSH_FORCE;
130 if (dry_run)
131 flags |= TRANSPORT_PUSH_DRY_RUN;
1b2486d7
SP
132 if (verbose)
133 flags |= TRANSPORT_PUSH_VERBOSE;
378c4832
DB
134 if (tags)
135 add_refspec("refs/tags/*");
136 if (all)
137 flags |= TRANSPORT_PUSH_ALL;
94c89ba6
AW
138 if (mirror)
139 flags |= (TRANSPORT_PUSH_MIRROR|TRANSPORT_PUSH_FORCE);
378c4832
DB
140
141 if (argc > 0) {
142 repo = argv[0];
143 set_refspecs(argv + 1, argc - 1);
755225de 144 }
8558fd9e 145
84bb2dfd
PB
146 rc = do_push(repo, flags);
147 if (rc == -1)
94c89ba6 148 usage_with_options(push_usage, options);
84bb2dfd
PB
149 else
150 return rc;
755225de 151}