document get -J's behavior of spreading load amoung same-cost remotes

I implemented this last fall, but forgot to document it anywhere.
This commit is contained in:
Joey Hess 2017-03-08 14:26:29 -04:00
parent 384027bc79
commit fde5dbff2b
No known key found for this signature in database
GPG key ID: C910D9222512E3C7

View file

@ -23,7 +23,7 @@ or transferring them from some kind of key-value store.
* `--from=remote`
Normally git-annex will choose which remotes to get the content
from, preferring less expensive remotes. Use this option to specify
from, preferring remotes with lower costs. Use this option to specify
which remote to use.
Any files that are not available on the remote will be silently skipped.
@ -33,6 +33,13 @@ or transferring them from some kind of key-value store.
Enables parallel download with up to the specified number of jobs
running at once. For example: `-J10`
When files can be downloaded from multiple remotes, enabling parallel
downloads will split the load between the remotes. For example, if
the files are available on remotes A and B, then one file will be
downloaded from A, and another file will be downloaded from B in
parallel. (Remotes with lower costs are still preferred over higher cost
remotes.)
* file matching options
The [[git-annex-matching-options]](1)