Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> --- Documentation/git-clone.txt | 10 +++++++++- builtin-clone.c | 13 +++++++++++++ t/t5703-clone-narrow.sh | 39 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+), 1 deletions(-) create mode 100755 t/t5703-clone-narrow.sh diff --git a/Documentation/git-clone.txt b/Documentation/git-clone.txt index 0e14e73..c283cf4 100644 --- a/Documentation/git-clone.txt +++ b/Documentation/git-clone.txt @@ -12,7 +12,8 @@ SYNOPSIS 'git clone' [--template=<template_directory>] [-l] [-s] [--no-hardlinks] [-q] [-n] [--bare] [--mirror] [-o <name>] [-u <upload-pack>] [--reference <repository>] - [--depth <depth>] [--] <repository> [<directory>] + [--depth <depth>] [--narrow-path=<sparse patterns>] [--] + <repository> [<directory>] DESCRIPTION ----------- @@ -94,6 +95,13 @@ then the cloned repository will become corrupt. -n:: No checkout of HEAD is performed after the clone is complete. +--narrow-path=<sparse patterns>:: + Make a sparse checkout instead of full one. The checkout area + will be narrowed to specific areas based on given sparse + patterns. This option will not work with either --no-checkout + or --bare. Please refer to linkgit:git-checkout[1] for more + detail on sparse checkout and sparse patterns. + --bare:: Make a 'bare' GIT repository. That is, instead of creating `<directory>` and placing the administrative diff --git a/builtin-clone.c b/builtin-clone.c index a4b8790..5ee8362 100644 --- a/builtin-clone.c +++ b/builtin-clone.c @@ -36,6 +36,7 @@ static const char * const builtin_clone_usage[] = { static int option_quiet, option_no_checkout, option_bare, option_mirror; static int option_local, option_no_hardlinks, option_shared; static char *option_template, *option_reference, *option_depth; +static char *option_narrow_path; static char *option_origin = NULL; static char *option_upload_pack = "git-upload-pack"; @@ -43,6 +44,8 @@ static struct option builtin_clone_options[] = { OPT__QUIET(&option_quiet), OPT_BOOLEAN('n', "no-checkout", &option_no_checkout, "don't create a checkout"), + OPT_STRING(0, "narrow-path", &option_narrow_path, "prefixes", + "limit checkout to specified areas (sparse checkout)"), OPT_BOOLEAN(0, "bare", &option_bare, "create a bare repository"), OPT_BOOLEAN(0, "naked", &option_bare, "create a bare repository"), OPT_BOOLEAN(0, "mirror", &option_mirror, @@ -378,10 +381,15 @@ int cmd_clone(int argc, const char **argv, const char *prefix) if (option_origin) die("--bare and --origin %s options are incompatible.", option_origin); + if (option_narrow_path) + die("--bare and --narrow-path options are incompatible."); option_no_checkout = 1; use_separate_remote = 0; } + if (option_no_checkout && option_narrow_path) + die("--no-checkout and --narrow-path options are incompatible."); + if (!option_origin) option_origin = "origin"; @@ -590,6 +598,11 @@ int cmd_clone(int argc, const char **argv, const char *prefix) opts.src_index = &the_index; opts.dst_index = &the_index; + if (option_narrow_path) { + opts.new_narrow_path = 1; + opts.narrow_spec = parse_narrow_spec(option_narrow_path, NULL); + } + tree = parse_tree_indirect(remote_head->old_sha1); parse_tree(tree); init_tree_desc(&t, tree->buffer, tree->size); diff --git a/t/t5703-clone-narrow.sh b/t/t5703-clone-narrow.sh new file mode 100755 index 0000000..66f9191 --- /dev/null +++ b/t/t5703-clone-narrow.sh @@ -0,0 +1,39 @@ +#!/bin/sh + +test_description='narrow clone' + +. ./test-lib.sh + +test_expect_success setup ' + rm -fr .git && + test_create_repo src && + ( + cd src + mkdir -p work/sub/dir + touch untracked tracked modified added + touch work/untracked work/tracked work/modified work/added + git add tracked work/tracked + git add modified work/modified + git commit -m initial + ) + +' + +test_expect_success 'narrow clone incompatible with --bare' ' + rm -fr dst && + test_must_fail git clone --narrow-path=work --bare src dst +' + +test_expect_success 'narrow clone incompatible with --no-checkout' ' + rm -fr dst && + test_must_fail git clone --narrow-path=work -n src dst +' + +test_expect_success 'clone with --narrow-path' ' + rm -fr dst && + git clone --narrow-path=work src dst && + cd dst && + test -z "$(git ls-files --sparse | grep -v ^work/)" +' + +test_done -- 1.6.0.96.g2fad1.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html