diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-02-05 16:31:26 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-02-05 16:31:26 -0800 |
commit | 9d36b1e9c2113c88003b668ba33cd2c9869a5c55 (patch) | |
tree | 2db1c2cfd0ecf7de3f39172e579403c296c10980 /Documentation | |
parent | Merge branch 'bc/doc-status-short' into maint (diff) | |
parent | Documentation/git-clone.txt: document race with --local (diff) | |
download | tgif-9d36b1e9c2113c88003b668ba33cd2c9869a5c55.tar.xz |
Merge branch 'tb/local-clone-race-doc' into maint
Doc update.
* tb/local-clone-race-doc:
Documentation/git-clone.txt: document race with --local
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-clone.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/git-clone.txt b/Documentation/git-clone.txt index 876aedcd47..02d9c19cec 100644 --- a/Documentation/git-clone.txt +++ b/Documentation/git-clone.txt @@ -57,6 +57,10 @@ repository is specified as a URL, then this flag is ignored (and we never use the local optimizations). Specifying `--no-local` will override the default when `/path/to/repo` is given, using the regular Git transport instead. ++ +*NOTE*: this operation can race with concurrent modification to the +source repository, similar to running `cp -r src dst` while modifying +`src`. --no-hardlinks:: Force the cloning process from a repository on a local |