File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def run(self):
3131
3232
3333def 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 )
You can’t perform that action at this time.
0 commit comments