Skip to content

Commit

Permalink
import: add a note about supported schemes
Browse files Browse the repository at this point in the history
Fixes iterative#1199

Signed-off-by: Ruslan Kuprieiev <[email protected]>
  • Loading branch information
efiop committed Oct 9, 2018
1 parent 4888ab8 commit a736082
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion dvc/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,15 @@ def parse_args(argv=None):
help=IMPORT_HELP)
import_parser.add_argument(
'url',
help='URL.')
help="URL. Supported urls: "
"'/path/to/file', "
"'C:\\\\path\\to\\file', "
"'s3://bucket/path/to/file', "
"'gs://bucket/path/to/file', "
"'hdfs://example.com/path/to/file', "
"'ssh://example.com:/path/to/file', "
"'remote://myremote/path/to/file'(see "
"`dvc remote` commands). ")
import_parser.add_argument(
'out',
help='Output.')
Expand Down

0 comments on commit a736082

Please sign in to comment.