We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
clone --no-fetch-commits-and-trees
1 parent 22e1322 commit 8116d20Copy full SHA for 8116d20
scalar.c
@@ -688,6 +688,7 @@ static int init_shared_object_cache(const char *url,
688
689
static int cmd_clone(int argc, const char **argv)
690
{
691
+ int dummy = 0;
692
const char *branch = NULL;
693
int full_clone = 0, single_branch = 0, show_progress = isatty(2);
694
int src = 1, tags = 1;
@@ -711,6 +712,8 @@ static int cmd_clone(int argc, const char **argv)
711
712
OPT_STRING(0, "local-cache-path", &local_cache_root,
713
N_("<path>"),
714
N_("override the path for the local Scalar cache")),
715
+ OPT_HIDDEN_BOOL(0, "no-fetch-commits-and-trees",
716
+ &dummy, N_("no longer used")),
717
OPT_END(),
718
};
719
const char * const clone_usage[] = {
0 commit comments