diff --git a/content/docs/command-reference/import.md b/content/docs/command-reference/import.md index e7968056fe..7d687ff3f0 100644 --- a/content/docs/command-reference/import.md +++ b/content/docs/command-reference/import.md @@ -10,7 +10,7 @@ the import. ## Synopsis ```usage -usage: dvc import [-h] [-q | -v] +usage: dvc import [-h] [-q | -v] [-j ] [-o ] [--file ] [--rev ] [--no-exec] [--desc ] url path @@ -110,6 +110,12 @@ repo at `url`) are not supported. data already exist locally and you want to "DVCfy" this state of the project (see also `dvc commit`). +- `-j `, `--jobs ` - number of threads to run simultaneously to + handle the downloading of files from the remote. The default value is + `4 * cpu_count()`. For SSH remotes, the default is just `4`. Using more jobs + may improve the total download speed if a combination of small and large files + are being fetched. + - `--desc ` - user description of the data (optional). This doesn't affect any DVC operations.