builtin-push.con commit tests: handle NO_PYTHON setting (ac10a85)
   1/*
   2 * "git push"
   3 */
   4#include "cache.h"
   5#include "refs.h"
   6#include "run-command.h"
   7#include "builtin.h"
   8#include "remote.h"
   9#include "transport.h"
  10#include "parse-options.h"
  11
  12static const char * const push_usage[] = {
  13        "git push [<options>] [<repository> <refspec>...]",
  14        NULL,
  15};
  16
  17static int thin;
  18static const char *receivepack;
  19
  20static const char **refspec;
  21static int refspec_nr;
  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
  31static void set_refspecs(const char **refs, int nr)
  32{
  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;
  46                }
  47                add_refspec(ref);
  48        }
  49}
  50
  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) {
  71        default:
  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
  91static int push_with_options(struct transport *transport, int flags)
  92{
  93        int err;
  94        int nonfastforward;
  95        if (receivepack)
  96                transport_set_option(transport,
  97                                     TRANS_OPT_RECEIVEPACK, receivepack);
  98        if (thin)
  99                transport_set_option(transport, TRANS_OPT_THIN, "yes");
 100
 101        if (flags & TRANSPORT_PUSH_VERBOSE)
 102                fprintf(stderr, "Pushing to %s\n", transport->url);
 103        err = transport_push(transport, refspec_nr, refspec, flags,
 104                             &nonfastforward);
 105        if (err != 0)
 106                error("failed to push some refs to '%s'", transport->url);
 107
 108        err |= transport_disconnect(transport);
 109
 110        if (!err)
 111                return 0;
 112
 113        if (nonfastforward && advice_push_nonfastforward) {
 114                printf("To prevent you from losing history, non-fast-forward updates were rejected\n"
 115                       "Merge the remote changes before pushing again.  See the 'non-fast-forward'\n"
 116                       "section of 'git push --help' for details.\n");
 117        }
 118
 119        return 1;
 120}
 121
 122static int do_push(const char *repo, int flags)
 123{
 124        int i, errs;
 125        struct remote *remote = remote_get(repo);
 126        const char **url;
 127        int url_nr;
 128
 129        if (!remote) {
 130                if (repo)
 131                        die("bad repository '%s'", repo);
 132                die("No destination configured to push to.");
 133        }
 134
 135        if (remote->mirror)
 136                flags |= (TRANSPORT_PUSH_MIRROR|TRANSPORT_PUSH_FORCE);
 137
 138        if ((flags & TRANSPORT_PUSH_ALL) && refspec) {
 139                if (!strcmp(*refspec, "refs/tags/*"))
 140                        return error("--all and --tags are incompatible");
 141                return error("--all can't be combined with refspecs");
 142        }
 143
 144        if ((flags & TRANSPORT_PUSH_MIRROR) && refspec) {
 145                if (!strcmp(*refspec, "refs/tags/*"))
 146                        return error("--mirror and --tags are incompatible");
 147                return error("--mirror can't be combined with refspecs");
 148        }
 149
 150        if ((flags & (TRANSPORT_PUSH_ALL|TRANSPORT_PUSH_MIRROR)) ==
 151                                (TRANSPORT_PUSH_ALL|TRANSPORT_PUSH_MIRROR)) {
 152                return error("--all and --mirror are incompatible");
 153        }
 154
 155        if (!refspec && !(flags & TRANSPORT_PUSH_ALL)) {
 156                if (remote->push_refspec_nr) {
 157                        refspec = remote->push_refspec;
 158                        refspec_nr = remote->push_refspec_nr;
 159                } else if (!(flags & TRANSPORT_PUSH_MIRROR))
 160                        setup_default_push_refspecs();
 161        }
 162        errs = 0;
 163        if (remote->pushurl_nr) {
 164                url = remote->pushurl;
 165                url_nr = remote->pushurl_nr;
 166        } else {
 167                url = remote->url;
 168                url_nr = remote->url_nr;
 169        }
 170        if (url_nr) {
 171                for (i = 0; i < url_nr; i++) {
 172                        struct transport *transport =
 173                                transport_get(remote, url[i]);
 174                        if (push_with_options(transport, flags))
 175                                errs++;
 176                }
 177        } else {
 178                struct transport *transport =
 179                        transport_get(remote, NULL);
 180
 181                if (push_with_options(transport, flags))
 182                        errs++;
 183        }
 184        return !!errs;
 185}
 186
 187int cmd_push(int argc, const char **argv, const char *prefix)
 188{
 189        int flags = 0;
 190        int tags = 0;
 191        int rc;
 192        const char *repo = NULL;        /* default repository */
 193
 194        struct option options[] = {
 195                OPT_BIT('q', "quiet", &flags, "be quiet", TRANSPORT_PUSH_QUIET),
 196                OPT_BIT('v', "verbose", &flags, "be verbose", TRANSPORT_PUSH_VERBOSE),
 197                OPT_STRING( 0 , "repo", &repo, "repository", "repository"),
 198                OPT_BIT( 0 , "all", &flags, "push all refs", TRANSPORT_PUSH_ALL),
 199                OPT_BIT( 0 , "mirror", &flags, "mirror all refs",
 200                            (TRANSPORT_PUSH_MIRROR|TRANSPORT_PUSH_FORCE)),
 201                OPT_BOOLEAN( 0 , "tags", &tags, "push tags (can't be used with --all or --mirror"),
 202                OPT_BIT('n' , "dry-run", &flags, "dry run", TRANSPORT_PUSH_DRY_RUN),
 203                OPT_BIT( 0,  "porcelain", &flags, "machine-readable output", TRANSPORT_PUSH_PORCELAIN),
 204                OPT_BIT('f', "force", &flags, "force updates", TRANSPORT_PUSH_FORCE),
 205                OPT_BOOLEAN( 0 , "thin", &thin, "use thin pack"),
 206                OPT_STRING( 0 , "receive-pack", &receivepack, "receive-pack", "receive pack program"),
 207                OPT_STRING( 0 , "exec", &receivepack, "receive-pack", "receive pack program"),
 208                OPT_END()
 209        };
 210
 211        argc = parse_options(argc, argv, prefix, options, push_usage, 0);
 212
 213        if (tags)
 214                add_refspec("refs/tags/*");
 215
 216        if (argc > 0) {
 217                repo = argv[0];
 218                set_refspecs(argv + 1, argc - 1);
 219        }
 220
 221        rc = do_push(repo, flags);
 222        if (rc == -1)
 223                usage_with_options(push_usage, options);
 224        else
 225                return rc;
 226}