Skip to content

Commit f126f24

Browse files
doc: change get documentation so that it doesn't imply the target must be DVC enabled
1 parent 07637a6 commit f126f24

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dvc/command/get.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def run(self):
3131

3232

3333
def add_parser(subparsers, parent_parser):
34-
GET_HELP = "Download/copy files or directories from DVC repository."
34+
GET_HELP = "Download/copy files or directories from git repository."
3535
get_parser = subparsers.add_parser(
3636
"get",
3737
parents=[parent_parser],
@@ -40,10 +40,10 @@ def add_parser(subparsers, parent_parser):
4040
formatter_class=argparse.RawDescriptionHelpFormatter,
4141
)
4242
get_parser.add_argument(
43-
"url", help="URL of Git repository with DVC project to download from."
43+
"url", help="URL of Git repository to download from."
4444
)
4545
get_parser.add_argument(
46-
"path", help="Path to a file or directory within a DVC repository."
46+
"path", help="Path to a file or directory within the repository."
4747
)
4848
get_parser.add_argument(
4949
"-o",
@@ -52,6 +52,6 @@ def add_parser(subparsers, parent_parser):
5252
help="Destination path to copy/download files to.",
5353
)
5454
get_parser.add_argument(
55-
"--rev", nargs="?", help="DVC repository git revision."
55+
"--rev", nargs="?", help="Repository git revision."
5656
)
5757
get_parser.set_defaults(func=CmdGet)

0 commit comments

Comments
 (0)