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