Skip to content

Commit

Permalink
doc: mention HTTPS approach in tutorial git clone step (#1471)
Browse files Browse the repository at this point in the history
* doc: change tutorial git to suggest HTTPS

Since we're instructing the user to create a new repository, it might be a safe bet to assume that they don't have their SSH keys set up. HTTPS might be a better option in this context.

* docs: keep ssh add https

@hongarc said, "How about keep `SSH` and add `HTTPS`." This is one way to do that.

* Update tutorial-setup.md
  • Loading branch information
TurekBot authored and yangshun committed May 17, 2019
1 parent a7b19c0 commit cb7c6f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/tutorial-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ We highly recommend you to install Yarn, an alternative package manager that has
5. Clone your repository to your local machine:

```sh
git clone git@github.com:USERNAME/docusaurus-tutorial.git
git clone git@github.com:USERNAME/docusaurus-tutorial.git # SSH
# or
git clone https://github.com/USERNAME/docusaurus-tutorial.git # HTTPS
```

6. `cd` into the repository which you just created.
Expand Down

0 comments on commit cb7c6f3

Please sign in to comment.