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 + ``` +