Skip to content

Commit

Permalink
scalar: parse clone --no-fetch-commits-and-trees for backwards comp…
Browse files Browse the repository at this point in the history
…atibility

This option does not do anything anymore, though.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  • Loading branch information
dscho committed Sep 27, 2022
1 parent 9e42573 commit 613b762
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scalar.c
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ static int init_shared_object_cache(const char *url,
static int cmd_clone(int argc, const char **argv)
{
const char *branch = NULL;
int full_clone = 0, single_branch = 0;
int full_clone = 0, single_branch = 0, dummy = 0;
const char *cache_server_url = NULL, *local_cache_root = NULL;
char *default_cache_server_url = NULL, *local_cache_root_abs = NULL;
struct option clone_options[] = {
Expand All @@ -682,6 +682,8 @@ static int cmd_clone(int argc, const char **argv)
OPT_STRING(0, "local-cache-path", &local_cache_root,
N_("<path>"),
N_("override the path for the local Scalar cache")),
OPT_HIDDEN_BOOL(0, "no-fetch-commits-and-trees",
&dummy, N_("no longer used")),
OPT_END(),
};
const char * const clone_usage[] = {
Expand Down

0 comments on commit 613b762

Please sign in to comment.