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 76cdd2e commit 423eda2Copy full SHA for 423eda2
scalar.c
@@ -679,6 +679,7 @@ static int init_shared_object_cache(const char *url,
679
680
static int cmd_clone(int argc, const char **argv)
681
{
682
+ int dummy = 0;
683
const char *branch = NULL;
684
int full_clone = 0, single_branch = 0, show_progress = isatty(2);
685
const char *cache_server_url = NULL, *local_cache_root = NULL;
@@ -697,6 +698,8 @@ static int cmd_clone(int argc, const char **argv)
697
698
OPT_STRING(0, "local-cache-path", &local_cache_root,
699
N_("<path>"),
700
N_("override the path for the local Scalar cache")),
701
+ OPT_HIDDEN_BOOL(0, "no-fetch-commits-and-trees",
702
+ &dummy, N_("no longer used")),
703
OPT_END(),
704
};
705
const char * const clone_usage[] = {
0 commit comments