Skip to content

Commit

Permalink
doc: change get documentation so that it doesn't imply the target mus…
Browse files Browse the repository at this point in the history
…t be DVC enabled
  • Loading branch information
fabiosantoscode committed Jan 10, 2020
1 parent d092854 commit 09bdc73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dvc/command/get.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def run(self):


def add_parser(subparsers, parent_parser):
GET_HELP = "Download/copy files or directories from DVC repository."
GET_HELP = "Download/copy files or directories from git repository."
get_parser = subparsers.add_parser(
"get",
parents=[parent_parser],
Expand All @@ -40,10 +40,10 @@ def add_parser(subparsers, parent_parser):
formatter_class=argparse.RawDescriptionHelpFormatter,
)
get_parser.add_argument(
"url", help="URL of Git repository with DVC project to download from."
"url", help="URL of Git repository to download from."
)
get_parser.add_argument(
"path", help="Path to a file or directory within a DVC repository."
"path", help="Path to a file or directory within the repository."
)
get_parser.add_argument(
"-o",
Expand All @@ -52,6 +52,6 @@ def add_parser(subparsers, parent_parser):
help="Destination path to copy/download files to.",
)
get_parser.add_argument(
"--rev", nargs="?", help="DVC repository git revision."
"--rev", nargs="?", help="Repository git revision."
)
get_parser.set_defaults(func=CmdGet)

0 comments on commit 09bdc73

Please sign in to comment.