Skip to content

Commit 23f7b5a

Browse files
committed
scalar: parse clone --no-fetch-commits-and-trees for backwards compatibility
This option does not do anything anymore, though. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 0332292 commit 23f7b5a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scalar.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -682,6 +682,7 @@ static int init_shared_object_cache(const char *url,
682682

683683
static int cmd_clone(int argc, const char **argv)
684684
{
685+
int dummy = 0;
685686
const char *branch = NULL;
686687
int full_clone = 0, single_branch = 0, show_progress = isatty(2);
687688
int src = 1, tags = 1;
@@ -705,6 +706,8 @@ static int cmd_clone(int argc, const char **argv)
705706
OPT_STRING(0, "local-cache-path", &local_cache_root,
706707
N_("<path>"),
707708
N_("override the path for the local Scalar cache")),
709+
OPT_HIDDEN_BOOL(0, "no-fetch-commits-and-trees",
710+
&dummy, N_("no longer used")),
708711
OPT_END(),
709712
};
710713
const char * const clone_usage[] = {

0 commit comments

Comments
 (0)