diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2015-10-22 18:41:17 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-10-22 12:13:29 -0700 |
commit | 0181681e921fa4e001a51886749ee0584233db51 (patch) | |
tree | a57631f96bb7748d5f86a0602a93ddfc5ee4a8de /Documentation | |
parent | Sync with maint (diff) | |
download | tgif-0181681e921fa4e001a51886749ee0584233db51.tar.xz |
clone: allow "--dissociate" without reference
The "--reference" option is not the only way to provide a repository
to borrow objects from. A repository that borrows from another
repository can be cloned with "clone --local" and the resulting
repository will borrow from the same repository, which the user
may want to "--dissociate" from.
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-clone.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Documentation/git-clone.txt b/Documentation/git-clone.txt index f1f2a3f7ea..6bf000dac3 100644 --- a/Documentation/git-clone.txt +++ b/Documentation/git-clone.txt @@ -104,8 +104,13 @@ objects from the source repository into a pack in the cloned repository. --dissociate:: Borrow the objects from reference repositories specified with the `--reference` options only to reduce network - transfer and stop borrowing from them after a clone is made - by making necessary local copies of borrowed objects. + transfer, and stop borrowing from them after a clone is made + by making necessary local copies of borrowed objects. This + option can also be used when cloning locally from a + repository that already borrows objects from another + repository--the new repository will borrow objects from the + same repository, and this option can be used to stop the + borrowing. --quiet:: -q:: |