mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-30 10:48:05 +02:00
doc: mention HTTPS approach in tutorial git clone step (#1471)
* 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
This commit is contained in:
parent
a7b19c083a
commit
cb7c6f34b9
1 changed files with 3 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue