summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--man/repo-smartsync.15
-rw-r--r--man/repo-sync.15
-rw-r--r--subcmds/sync.py5
3 files changed, 9 insertions, 6 deletions
diff --git a/man/repo-smartsync.1 b/man/repo-smartsync.1
index 6e77f182..dd36df01 100644
--- a/man/repo-smartsync.1
+++ b/man/repo-smartsync.1
@@ -20,11 +20,12 @@ number of CPU cores)
20.TP 20.TP
21\fB\-\-jobs\-network\fR=\fI\,JOBS\/\fR 21\fB\-\-jobs\-network\fR=\fI\,JOBS\/\fR
22number of network jobs to run in parallel (defaults to 22number of network jobs to run in parallel (defaults to
23\fB\-\-jobs\fR or 1) 23\fB\-\-jobs\fR or 1). Ignored when \fB\-\-interleaved\fR is set
24.TP 24.TP
25\fB\-\-jobs\-checkout\fR=\fI\,JOBS\/\fR 25\fB\-\-jobs\-checkout\fR=\fI\,JOBS\/\fR
26number of local checkout jobs to run in parallel 26number of local checkout jobs to run in parallel
27(defaults to \fB\-\-jobs\fR or 8) 27(defaults to \fB\-\-jobs\fR or 8). Ignored when \fB\-\-interleaved\fR
28is set
28.TP 29.TP
29\fB\-f\fR, \fB\-\-force\-broken\fR 30\fB\-f\fR, \fB\-\-force\-broken\fR
30obsolete option (to be deleted in the future) 31obsolete option (to be deleted in the future)
diff --git a/man/repo-sync.1 b/man/repo-sync.1
index afaee2af..6e9dd8ad 100644
--- a/man/repo-sync.1
+++ b/man/repo-sync.1
@@ -20,11 +20,12 @@ number of CPU cores)
20.TP 20.TP
21\fB\-\-jobs\-network\fR=\fI\,JOBS\/\fR 21\fB\-\-jobs\-network\fR=\fI\,JOBS\/\fR
22number of network jobs to run in parallel (defaults to 22number of network jobs to run in parallel (defaults to
23\fB\-\-jobs\fR or 1) 23\fB\-\-jobs\fR or 1). Ignored when \fB\-\-interleaved\fR is set
24.TP 24.TP
25\fB\-\-jobs\-checkout\fR=\fI\,JOBS\/\fR 25\fB\-\-jobs\-checkout\fR=\fI\,JOBS\/\fR
26number of local checkout jobs to run in parallel 26number of local checkout jobs to run in parallel
27(defaults to \fB\-\-jobs\fR or 8) 27(defaults to \fB\-\-jobs\fR or 8). Ignored when \fB\-\-interleaved\fR
28is set
28.TP 29.TP
29\fB\-f\fR, \fB\-\-force\-broken\fR 30\fB\-f\fR, \fB\-\-force\-broken\fR
30obsolete option (to be deleted in the future) 31obsolete option (to be deleted in the future)
diff --git a/subcmds/sync.py b/subcmds/sync.py
index f0c398a3..e75a8154 100644
--- a/subcmds/sync.py
+++ b/subcmds/sync.py
@@ -411,7 +411,7 @@ later is required to fix a server side protocol bug.
411 type=int, 411 type=int,
412 metavar="JOBS", 412 metavar="JOBS",
413 help="number of network jobs to run in parallel (defaults to " 413 help="number of network jobs to run in parallel (defaults to "
414 "--jobs or 1)", 414 "--jobs or 1). Ignored when --interleaved is set",
415 ) 415 )
416 p.add_option( 416 p.add_option(
417 "--jobs-checkout", 417 "--jobs-checkout",
@@ -419,7 +419,8 @@ later is required to fix a server side protocol bug.
419 type=int, 419 type=int,
420 metavar="JOBS", 420 metavar="JOBS",
421 help="number of local checkout jobs to run in parallel (defaults " 421 help="number of local checkout jobs to run in parallel (defaults "
422 f"to --jobs or {DEFAULT_LOCAL_JOBS})", 422 f"to --jobs or {DEFAULT_LOCAL_JOBS}). Ignored when --interleaved "
423 "is set",
423 ) 424 )
424 425
425 p.add_option( 426 p.add_option(