X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-fetch.c;h=7fb35fca9d1b57dacaebfd3cb9b2af4d035e750c;hb=3db964b551827e25f897cc75ffd8e520ee8b48cd;hp=1e4a3d9c516c88d701819b7f4b73c722412d540f;hpb=7aa4e736b295c8784a70645e79dd80a7a80c6147;p=git.git diff --git a/builtin-fetch.c b/builtin-fetch.c index 1e4a3d9c5..7fb35fca9 100644 --- a/builtin-fetch.c +++ b/builtin-fetch.c @@ -636,6 +636,9 @@ int cmd_fetch(int argc, const char **argv, const char *prefix) else remote = remote_get(argv[0]); + if (!remote) + die("Where do you want to fetch from today?"); + transport = transport_get(remote, remote->url[0]); if (verbosity >= 2) transport->verbose = 1; @@ -648,9 +651,6 @@ int cmd_fetch(int argc, const char **argv, const char *prefix) if (depth) set_option(TRANS_OPT_DEPTH, depth); - if (!transport->url) - die("Where do you want to fetch from today?"); - if (argc > 1) { int j = 0; refs = xcalloc(argc + 1, sizeof(const char *));