From 125a004c51012b5fd5741a049defd01b8045002a Mon Sep 17 00:00:00 2001 From: David de la Iglesia Castro Date: Thu, 20 Jan 2022 14:59:25 +0100 Subject: [PATCH] add: Update help of `--jobs` --- dvc/commands/add.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dvc/commands/add.py b/dvc/commands/add.py index 43d1d3d9e7..d50502026b 100644 --- a/dvc/commands/add.py +++ b/dvc/commands/add.py @@ -102,7 +102,9 @@ def add_parser(subparsers, parent_parser): "--jobs", type=int, help=( - "Number of jobs to run simultaneously. " + "Only used along with '--to-remote'. " + "Number of jobs to run simultaneously " + "when pushing data to remote." "The default value is 4 * cpu_count(). " "For SSH remotes, the default is 4. " ),