diff --git a/dvc/command/get.py b/dvc/command/get.py index a0bc5186fa..3595276d31 100644 --- a/dvc/command/get.py +++ b/dvc/command/get.py @@ -51,9 +51,7 @@ def _get_file_from_repo(self): def add_parser(subparsers, parent_parser): - GET_HELP = ( - "Download file or directory from any DVC project or Git repository." - ) + GET_HELP = "Download file or directory tracked by DVC or by Git." get_parser = subparsers.add_parser( "get", parents=[parent_parser], @@ -62,12 +60,10 @@ def add_parser(subparsers, parent_parser): formatter_class=argparse.RawDescriptionHelpFormatter, ) get_parser.add_argument( - "url", - help="Location of DVC project or Git repository to download from", + "url", help="Location of DVC or Git repository to download from" ) get_parser.add_argument( - "path", - help="Path to a file or directory within the project or repository", + "path", help="Path to a file or directory within the repository" ) get_parser.add_argument( "-o", "--out", nargs="?", help="Destination path to download files to" diff --git a/dvc/command/imp.py b/dvc/command/imp.py index 83ee0da7bb..eaaaa7eca4 100644 --- a/dvc/command/imp.py +++ b/dvc/command/imp.py @@ -30,7 +30,7 @@ def run(self): def add_parser(subparsers, parent_parser): IMPORT_HELP = ( - "Download file or directory from any DVC project or Git repository " + "Download file or directory tracked by DVC or by Git " "into the workspace, and track it." ) @@ -42,12 +42,10 @@ def add_parser(subparsers, parent_parser): formatter_class=argparse.RawTextHelpFormatter, ) import_parser.add_argument( - "url", - help="Location of DVC project or Git repository to download from", + "url", help="Location of DVC or Git repository to download from" ) import_parser.add_argument( - "path", - help="Path to a file or directory within the project or repository", + "path", help="Path to a file or directory within the repository" ) import_parser.add_argument( "-o", "--out", nargs="?", help="Destination path to download files to"