@@ -30,7 +30,8 @@ def run(self):
3030
3131def add_parser (subparsers , parent_parser ):
3232 IMPORT_HELP = (
33- "Download data from DVC repository and take it under DVC control."
33+ "Download data from DVC project or Git repository and take it under "
34+ "DVC control."
3435 )
3536
3637 import_parser = subparsers .add_parser (
@@ -41,13 +42,12 @@ def add_parser(subparsers, parent_parser):
4142 formatter_class = argparse .RawTextHelpFormatter ,
4243 )
4344 import_parser .add_argument (
44- "url" , help = "URL of Git repository with DVC project to download from."
45+ "url" ,
46+ help = "Location of Git repository with DVC project to download from." ,
4547 )
48+ import_parser .add_argument ("path" , help = "Path to data within DVC project." )
4649 import_parser .add_argument (
47- "path" , help = "Path to data within DVC repository."
48- )
49- import_parser .add_argument (
50- "-o" , "--out" , nargs = "?" , help = "Destination path to put data to."
50+ "-o" , "--out" , nargs = "?" , help = "Destination path to put data in."
5151 )
5252 import_parser .add_argument (
5353 "--rev" , nargs = "?" , help = "DVC repository git revision."
0 commit comments