diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2016-06-12 17:54:05 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-06-13 14:38:16 -0700 |
commit | 859e5df916cc3f3cba920c527f485ffaf6d7efa9 (patch) | |
tree | a78caa87981816db81a561696c66e959195a1ab1 /Documentation | |
parent | a45a260086b395729e3c26c9680602e1352184b5 (diff) | |
download | git-859e5df916cc3f3cba920c527f485ffaf6d7efa9.tar.gz git-859e5df916cc3f3cba920c527f485ffaf6d7efa9.tar.xz |
clone: define shallow clone boundary with --shallow-exclude
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-clone.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/git-clone.txt b/Documentation/git-clone.txt index a410409b8..5049663f3 100644 --- a/Documentation/git-clone.txt +++ b/Documentation/git-clone.txt @@ -196,6 +196,11 @@ objects from the source repository into a pack in the cloned repository. --shallow-since=<date>:: Create a shallow clone with a history after the specified time. +--shallow-exclude=<revision>:: + Create a shallow clone with a history, excluding commits + reachable from a specified remote branch or tag. This option + can be specified multiple times. + --[no-]single-branch:: Clone only the history leading to the tip of a single branch, either specified by the `--branch` option or the primary |