Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion content/docs/command-reference/import.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ the import.
## Synopsis

```usage
usage: dvc import [-h] [-q | -v]
usage: dvc import [-h] [-q | -v] [-j <number>]
[-o <path>] [--file <filename>]
[--rev <commit>] [--no-exec] [--desc <text>]
url path
Expand Down Expand Up @@ -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 <number>`, `--jobs <number>` - 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 <text>` - user description of the data (optional). This doesn't affect
any DVC operations.

Expand Down