6 #include "run-command.h"
10 #include "parse-options.h"
12 static const char * const push_usage
[] = {
13 "git-push [--all | --mirror] [--dry-run] [--tags] [--receive-pack=<git-receive-pack>] [--repo=all] [-f | --force] [-v] [<repository> <refspec>...]",
17 static int thin
, verbose
;
18 static const char *receivepack
;
20 static const char **refspec
;
21 static int refspec_nr
;
23 static void add_refspec(const char *ref
)
25 int nr
= refspec_nr
+ 1;
26 refspec
= xrealloc(refspec
, nr
* sizeof(char *));
31 static void set_refspecs(const char **refs
, int nr
)
34 for (i
= 0; i
< nr
; i
++) {
35 const char *ref
= refs
[i
];
36 if (!strcmp("tag", ref
)) {
40 die("tag shorthand without <tag>");
41 len
= strlen(refs
[i
]) + 11;
43 strcpy(tag
, "refs/tags/");
51 static int do_push(const char *repo
, int flags
)
54 struct remote
*remote
= remote_get(repo
);
57 die("bad repository '%s'", repo
);
60 && !(flags
& TRANSPORT_PUSH_ALL
)
61 && remote
->push_refspec_nr
) {
62 refspec
= remote
->push_refspec
;
63 refspec_nr
= remote
->push_refspec_nr
;
66 for (i
= 0; i
< remote
->url_nr
; i
++) {
67 struct transport
*transport
=
68 transport_get(remote
, remote
->url
[i
]);
71 transport_set_option(transport
,
72 TRANS_OPT_RECEIVEPACK
, receivepack
);
74 transport_set_option(transport
, TRANS_OPT_THIN
, "yes");
77 fprintf(stderr
, "Pushing to %s\n", remote
->url
[i
]);
78 err
= transport_push(transport
, refspec_nr
, refspec
, flags
);
79 err
|= transport_disconnect(transport
);
84 error("failed to push some refs to '%s'", remote
->url
[i
]);
90 int cmd_push(int argc
, const char **argv
, const char *prefix
)
98 const char *repo
= NULL
; /* default repository */
100 struct option options
[] = {
101 OPT__VERBOSE(&verbose
),
102 OPT_STRING( 0 , "repo", &repo
, "repository", "repository"),
103 OPT_BOOLEAN( 0 , "all", &all
, "push all refs"),
104 OPT_BOOLEAN( 0 , "mirror", &mirror
, "mirror all refs"),
105 OPT_BOOLEAN( 0 , "tags", &tags
, "push tags"),
106 OPT_BOOLEAN( 0 , "dry-run", &dry_run
, "dry run"),
107 OPT_BOOLEAN('f', "force", &force
, "force updates"),
108 OPT_BOOLEAN( 0 , "thin", &thin
, "use thin pack"),
109 OPT_STRING( 0 , "receive-pack", &receivepack
, "receive-pack", "receive pack program"),
110 OPT_STRING( 0 , "exec", &receivepack
, "receive-pack", "receive pack program"),
114 argc
= parse_options(argc
, argv
, options
, push_usage
, 0);
117 flags
|= TRANSPORT_PUSH_FORCE
;
119 flags
|= TRANSPORT_PUSH_DRY_RUN
;
121 flags
|= TRANSPORT_PUSH_VERBOSE
;
123 add_refspec("refs/tags/*");
125 flags
|= TRANSPORT_PUSH_ALL
;
127 flags
|= (TRANSPORT_PUSH_MIRROR
|TRANSPORT_PUSH_FORCE
);
131 set_refspecs(argv
+ 1, argc
- 1);
133 if ((flags
& (TRANSPORT_PUSH_ALL
|TRANSPORT_PUSH_MIRROR
)) && refspec
)
134 usage_with_options(push_usage
, options
);
136 if ((flags
& (TRANSPORT_PUSH_ALL
|TRANSPORT_PUSH_MIRROR
)) ==
137 (TRANSPORT_PUSH_ALL
|TRANSPORT_PUSH_MIRROR
)) {
138 error("--all and --mirror are incompatible");
139 usage_with_options(push_usage
, options
);
142 return do_push(repo
, flags
);