From 53ca886243ecba5f0bf40a3797f459264c529def Mon Sep 17 00:00:00 2001 From: Ruslan Kuprieiev Date: Mon, 6 Jan 2020 19:10:23 +0200 Subject: [PATCH 1/2] remote: use `-d` in s3 example User complained that local one has `-d` but s3 doesn't. --- public/static/docs/command-reference/remote/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/static/docs/command-reference/remote/index.md b/public/static/docs/command-reference/remote/index.md index 9856561927..df57354276 100644 --- a/public/static/docs/command-reference/remote/index.md +++ b/public/static/docs/command-reference/remote/index.md @@ -101,7 +101,7 @@ remote = myremote > [Create a Bucket](https://docs.aws.amazon.com/AmazonS3/latest/gsg/CreatingABucket.html). ```dvc -$ dvc remote add mynewremote s3://mybucket/myproject +$ dvc remote add -d mynewremote s3://mybucket/myproject $ dvc remote modify mynewremote region us-east-2 ``` From c6657e5c506cef5401e79b322d68c86f1f30ac82 Mon Sep 17 00:00:00 2001 From: Ruslan Kuprieiev Date: Tue, 7 Jan 2020 22:40:43 +0200 Subject: [PATCH 2/2] remote: explicitly mention that we are setting default remote https://github.com/iterative/dvc.org/pull/902#discussion_r363390627 --- public/static/docs/command-reference/remote/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/static/docs/command-reference/remote/index.md b/public/static/docs/command-reference/remote/index.md index df57354276..7e018cd6e7 100644 --- a/public/static/docs/command-reference/remote/index.md +++ b/public/static/docs/command-reference/remote/index.md @@ -95,7 +95,7 @@ url = /path/to/remote remote = myremote ``` -## Example: Add Amazon S3 remote and modify its region +## Example: Add a default Amazon S3 remote and modify its region > 💡 Before adding an S3 remote, be sure to > [Create a Bucket](https://docs.aws.amazon.com/AmazonS3/latest/gsg/CreatingABucket.html).