From 8d036d6f99c0a2f6d747041e2008dda9c19732c1 Mon Sep 17 00:00:00 2001 From: Victor Date: Wed, 9 Sep 2020 20:28:30 +0200 Subject: [PATCH] Update http remote documentation (#1767) Co-authored-by: Jorge Orpinel --- content/docs/command-reference/remote/modify.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/content/docs/command-reference/remote/modify.md b/content/docs/command-reference/remote/modify.md index 484075afd2..e402570bff 100644 --- a/content/docs/command-reference/remote/modify.md +++ b/content/docs/command-reference/remote/modify.md @@ -572,6 +572,9 @@ more information. $ dvc remote modify myremote url https://example.com/path/to/dir ``` + > The URL can include a query string, which will be preserved (e.g. + > `example.com?loc=path%2Fto%2Fdir`) + - `auth` - authentication method to use when accessing the remote. The accepted values are: @@ -630,6 +633,13 @@ more information. > `password` is specified, DVC will not prompt the user to enter a password > for this remote. +- `ssl_verify` - allows to disable SSH verification, which is enabled by + default. + + ```dvc + $ dvc remote modify myremote ssl_verify false + ``` +