From b3d72e11fec57ece4ea7a16637b7fddcd8b7e9e4 Mon Sep 17 00:00:00 2001 From: Ruslan Kuprieiev Date: Tue, 23 Jun 2020 14:41:34 +0300 Subject: [PATCH] push/pull/fetch: unhide --run-cache (#4087) Related to https://github.com/iterative/dvc.org/issues/1289 --- dvc/command/data_sync.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dvc/command/data_sync.py b/dvc/command/data_sync.py index a32e47c065..413735751b 100644 --- a/dvc/command/data_sync.py +++ b/dvc/command/data_sync.py @@ -173,7 +173,7 @@ def add_parser(subparsers, _parent_parser): "--run-cache", action="store_true", default=False, - help=argparse.SUPPRESS, + help="Fetch run history for all stages.", ) pull_parser.set_defaults(func=CmdDataPull) @@ -228,7 +228,7 @@ def add_parser(subparsers, _parent_parser): "--run-cache", action="store_true", default=False, - help=argparse.SUPPRESS, + help="Push run history for all stages.", ) push_parser.set_defaults(func=CmdDataPush) @@ -289,7 +289,7 @@ def add_parser(subparsers, _parent_parser): "--run-cache", action="store_true", default=False, - help=argparse.SUPPRESS, + help="Fetch run history for all stages.", ) fetch_parser.set_defaults(func=CmdDataFetch)