]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-push.c
Increase the size of the die/warning buffer to avoid truncation
[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[] = {
bf07cc58 13 "git push [--all | --mirror] [--dry-run] [--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
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
fa685bdf
DB
56 if (!remote) {
57 if (repo)
58 die("bad repository '%s'", repo);
59 die("No destination configured to push to.");
60 }
755225de 61
84bb2dfd
PB
62 if (remote->mirror)
63 flags |= (TRANSPORT_PUSH_MIRROR|TRANSPORT_PUSH_FORCE);
64
b259f09b
MZ
65 if ((flags & TRANSPORT_PUSH_ALL) && refspec) {
66 if (!strcmp(*refspec, "refs/tags/*"))
67 return error("--all and --tags are incompatible");
68 return error("--all can't be combined with refspecs");
69 }
70
71 if ((flags & TRANSPORT_PUSH_MIRROR) && refspec) {
72 if (!strcmp(*refspec, "refs/tags/*"))
73 return error("--mirror and --tags are incompatible");
74 return error("--mirror can't be combined with refspecs");
75 }
84bb2dfd
PB
76
77 if ((flags & (TRANSPORT_PUSH_ALL|TRANSPORT_PUSH_MIRROR)) ==
78 (TRANSPORT_PUSH_ALL|TRANSPORT_PUSH_MIRROR)) {
79 return error("--all and --mirror are incompatible");
80 }
81
18184f79
SP
82 if (!refspec
83 && !(flags & TRANSPORT_PUSH_ALL)
84 && remote->push_refspec_nr) {
8558fd9e
DB
85 refspec = remote->push_refspec;
86 refspec_nr = remote->push_refspec_nr;
5751f490 87 }
fd1d1b05 88 errs = 0;
28b91f8a 89 for (i = 0; i < remote->url_nr; i++) {
9b288516 90 struct transport *transport =
28b91f8a 91 transport_get(remote, remote->url[i]);
60b7f38e 92 int err;
9b288516
DB
93 if (receivepack)
94 transport_set_option(transport,
95 TRANS_OPT_RECEIVEPACK, receivepack);
96 if (thin)
97 transport_set_option(transport, TRANS_OPT_THIN, "yes");
98
c29c1b40 99 if (flags & TRANSPORT_PUSH_VERBOSE)
28b91f8a 100 fprintf(stderr, "Pushing to %s\n", remote->url[i]);
9b288516
DB
101 err = transport_push(transport, refspec_nr, refspec, flags);
102 err |= transport_disconnect(transport);
103
60b7f38e 104 if (!err)
755225de 105 continue;
39878b0c 106
2b8130c3 107 error("failed to push some refs to '%s'", remote->url[i]);
fd1d1b05 108 errs++;
755225de 109 }
fd1d1b05 110 return !!errs;
755225de
LT
111}
112
a633fca0 113int cmd_push(int argc, const char **argv, const char *prefix)
755225de 114{
9b288516 115 int flags = 0;
378c4832 116 int tags = 0;
84bb2dfd 117 int rc;
5751f490 118 const char *repo = NULL; /* default repository */
755225de 119
378c4832 120 struct option options[] = {
c29c1b40 121 OPT_BIT('v', "verbose", &flags, "be verbose", TRANSPORT_PUSH_VERBOSE),
378c4832 122 OPT_STRING( 0 , "repo", &repo, "repository", "repository"),
c29c1b40
MB
123 OPT_BIT( 0 , "all", &flags, "push all refs", TRANSPORT_PUSH_ALL),
124 OPT_BIT( 0 , "mirror", &flags, "mirror all refs",
125 (TRANSPORT_PUSH_MIRROR|TRANSPORT_PUSH_FORCE)),
378c4832 126 OPT_BOOLEAN( 0 , "tags", &tags, "push tags"),
c29c1b40
MB
127 OPT_BIT( 0 , "dry-run", &flags, "dry run", TRANSPORT_PUSH_DRY_RUN),
128 OPT_BIT('f', "force", &flags, "force updates", TRANSPORT_PUSH_FORCE),
378c4832
DB
129 OPT_BOOLEAN( 0 , "thin", &thin, "use thin pack"),
130 OPT_STRING( 0 , "receive-pack", &receivepack, "receive-pack", "receive pack program"),
131 OPT_STRING( 0 , "exec", &receivepack, "receive-pack", "receive pack program"),
132 OPT_END()
133 };
755225de 134
378c4832
DB
135 argc = parse_options(argc, argv, options, push_usage, 0);
136
378c4832
DB
137 if (tags)
138 add_refspec("refs/tags/*");
378c4832
DB
139
140 if (argc > 0) {
141 repo = argv[0];
142 set_refspecs(argv + 1, argc - 1);
755225de 143 }
8558fd9e 144
84bb2dfd
PB
145 rc = do_push(repo, flags);
146 if (rc == -1)
94c89ba6 147 usage_with_options(push_usage, options);
84bb2dfd
PB
148 else
149 return rc;
755225de 150}