]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-push.c
Merge branch 'jc/maint-imap-config-parse' into maint
[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[] = {
fcb044ee 13 "git push [<options>] [<repository> <refspec>...]",
378c4832
DB
14 NULL,
15};
755225de 16
c29c1b40 17static int thin;
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
52153747
FAG
51static void setup_push_tracking(void)
52{
53 struct strbuf refspec = STRBUF_INIT;
54 struct branch *branch = branch_get(NULL);
55 if (!branch)
56 die("You are not currently on a branch.");
57 if (!branch->merge_nr)
58 die("The current branch %s is not tracking anything.",
59 branch->name);
60 if (branch->merge_nr != 1)
61 die("The current branch %s is tracking multiple branches, "
62 "refusing to push.", branch->name);
63 strbuf_addf(&refspec, "%s:%s", branch->name, branch->merge[0]->src);
64 add_refspec(refspec.buf);
65}
66
67static void setup_default_push_refspecs(void)
68{
52153747 69 switch (push_default) {
bba0fd22 70 default:
52153747
FAG
71 case PUSH_DEFAULT_MATCHING:
72 add_refspec(":");
73 break;
74
75 case PUSH_DEFAULT_TRACKING:
76 setup_push_tracking();
77 break;
78
79 case PUSH_DEFAULT_CURRENT:
80 add_refspec("HEAD");
81 break;
82
83 case PUSH_DEFAULT_NOTHING:
84 die("You didn't specify any refspecs to push, and "
85 "push.default is \"nothing\".");
86 break;
87 }
88}
89
9b288516 90static int do_push(const char *repo, int flags)
755225de 91{
5751f490 92 int i, errs;
5751f490 93 struct remote *remote = remote_get(repo);
20346234
MG
94 const char **url;
95 int url_nr;
755225de 96
fa685bdf
DB
97 if (!remote) {
98 if (repo)
99 die("bad repository '%s'", repo);
100 die("No destination configured to push to.");
101 }
755225de 102
84bb2dfd
PB
103 if (remote->mirror)
104 flags |= (TRANSPORT_PUSH_MIRROR|TRANSPORT_PUSH_FORCE);
105
b259f09b
MZ
106 if ((flags & TRANSPORT_PUSH_ALL) && refspec) {
107 if (!strcmp(*refspec, "refs/tags/*"))
108 return error("--all and --tags are incompatible");
109 return error("--all can't be combined with refspecs");
110 }
111
112 if ((flags & TRANSPORT_PUSH_MIRROR) && refspec) {
113 if (!strcmp(*refspec, "refs/tags/*"))
114 return error("--mirror and --tags are incompatible");
115 return error("--mirror can't be combined with refspecs");
116 }
84bb2dfd
PB
117
118 if ((flags & (TRANSPORT_PUSH_ALL|TRANSPORT_PUSH_MIRROR)) ==
119 (TRANSPORT_PUSH_ALL|TRANSPORT_PUSH_MIRROR)) {
120 return error("--all and --mirror are incompatible");
121 }
122
52153747
FAG
123 if (!refspec && !(flags & TRANSPORT_PUSH_ALL)) {
124 if (remote->push_refspec_nr) {
125 refspec = remote->push_refspec;
126 refspec_nr = remote->push_refspec_nr;
127 } else if (!(flags & TRANSPORT_PUSH_MIRROR))
128 setup_default_push_refspecs();
5751f490 129 }
fd1d1b05 130 errs = 0;
20346234
MG
131 if (remote->pushurl_nr) {
132 url = remote->pushurl;
133 url_nr = remote->pushurl_nr;
134 } else {
135 url = remote->url;
136 url_nr = remote->url_nr;
137 }
138 for (i = 0; i < url_nr; i++) {
9b288516 139 struct transport *transport =
20346234 140 transport_get(remote, url[i]);
60b7f38e 141 int err;
07436e43 142 int nonfastforward;
9b288516
DB
143 if (receivepack)
144 transport_set_option(transport,
145 TRANS_OPT_RECEIVEPACK, receivepack);
146 if (thin)
147 transport_set_option(transport, TRANS_OPT_THIN, "yes");
148
c29c1b40 149 if (flags & TRANSPORT_PUSH_VERBOSE)
20346234 150 fprintf(stderr, "Pushing to %s\n", url[i]);
07436e43
MM
151 err = transport_push(transport, refspec_nr, refspec, flags,
152 &nonfastforward);
9b288516
DB
153 err |= transport_disconnect(transport);
154
60b7f38e 155 if (!err)
755225de 156 continue;
39878b0c 157
20346234 158 error("failed to push some refs to '%s'", url[i]);
75194438 159 if (nonfastforward && advice_push_nonfastforward) {
14b772a0 160 printf("To prevent you from losing history, non-fast-forward updates were rejected\n"
a75d7b54 161 "Merge the remote changes before pushing again. See the 'non-fast-forward'\n"
14b772a0 162 "section of 'git push --help' for details.\n");
07436e43 163 }
fd1d1b05 164 errs++;
755225de 165 }
fd1d1b05 166 return !!errs;
755225de
LT
167}
168
a633fca0 169int cmd_push(int argc, const char **argv, const char *prefix)
755225de 170{
9b288516 171 int flags = 0;
378c4832 172 int tags = 0;
84bb2dfd 173 int rc;
5751f490 174 const char *repo = NULL; /* default repository */
378c4832 175 struct option options[] = {
afdeeb00 176 OPT_BIT('q', "quiet", &flags, "be quiet", TRANSPORT_PUSH_QUIET),
c29c1b40 177 OPT_BIT('v', "verbose", &flags, "be verbose", TRANSPORT_PUSH_VERBOSE),
378c4832 178 OPT_STRING( 0 , "repo", &repo, "repository", "repository"),
c29c1b40
MB
179 OPT_BIT( 0 , "all", &flags, "push all refs", TRANSPORT_PUSH_ALL),
180 OPT_BIT( 0 , "mirror", &flags, "mirror all refs",
181 (TRANSPORT_PUSH_MIRROR|TRANSPORT_PUSH_FORCE)),
f740cc25 182 OPT_BOOLEAN( 0 , "tags", &tags, "push tags (can't be used with --all or --mirror)"),
9f67fee2 183 OPT_BIT('n' , "dry-run", &flags, "dry run", TRANSPORT_PUSH_DRY_RUN),
1965ff74 184 OPT_BIT( 0, "porcelain", &flags, "machine-readable output", TRANSPORT_PUSH_PORCELAIN),
c29c1b40 185 OPT_BIT('f', "force", &flags, "force updates", TRANSPORT_PUSH_FORCE),
378c4832
DB
186 OPT_BOOLEAN( 0 , "thin", &thin, "use thin pack"),
187 OPT_STRING( 0 , "receive-pack", &receivepack, "receive-pack", "receive pack program"),
188 OPT_STRING( 0 , "exec", &receivepack, "receive-pack", "receive pack program"),
189 OPT_END()
190 };
755225de 191
2aae905f 192 git_config(git_default_config, NULL);
37782920 193 argc = parse_options(argc, argv, prefix, options, push_usage, 0);
378c4832 194
378c4832
DB
195 if (tags)
196 add_refspec("refs/tags/*");
378c4832
DB
197
198 if (argc > 0) {
199 repo = argv[0];
200 set_refspecs(argv + 1, argc - 1);
755225de 201 }
8558fd9e 202
84bb2dfd
PB
203 rc = do_push(repo, flags);
204 if (rc == -1)
94c89ba6 205 usage_with_options(push_usage, options);
84bb2dfd
PB
206 else
207 return rc;
755225de 208}