Skip to content

Commit

Permalink
get/import: they don't work with any DVC project, only DVC repos (as …
Browse files Browse the repository at this point in the history
…well as Git repos) (iterative#3277)

* get/import: update cmd and url arg descs with correct behavior

* get/import: update path arg desc as well (See previous commit)

* get/imp: udpate help output with simpler terms
per iterative#3277 (review)
  • Loading branch information
jorgeorpinel authored Feb 10, 2020
1 parent 3d5b8ec commit 7821fa6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
10 changes: 3 additions & 7 deletions dvc/command/get.py
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand All @@ -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"
Expand Down
8 changes: 3 additions & 5 deletions dvc/command/imp.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."
)

Expand All @@ -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"
Expand Down

0 comments on commit 7821fa6

Please sign in to comment.