From 6a7a9c92ddafdaf4002b9d3ac5f0f8de50451b2c Mon Sep 17 00:00:00 2001 From: NohWayJose Date: Wed, 6 Oct 2021 17:28:10 +0100 Subject: [PATCH 1/3] Update step-1.mdx The 'Add upstream remote' step doesn't mention that there is a choice of two (SSH vs HTTPS) until after you've tried SSH - this edit makes the choice clear beforehand --- src/pages/developing/react-tutorial/step-1.mdx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/pages/developing/react-tutorial/step-1.mdx b/src/pages/developing/react-tutorial/step-1.mdx index 4d314feb99a..73ad3a2d04f 100644 --- a/src/pages/developing/react-tutorial/step-1.mdx +++ b/src/pages/developing/react-tutorial/step-1.mdx @@ -70,14 +70,15 @@ cd carbon-tutorial ### Add upstream remote Add a remote called `upstream` so we can eventually submit a pull request once -you have completed this tutorial step. +you have completed this tutorial step. There are two choices: SSH or HTTPS + +*SSH* ```bash git remote add upstream git@github.com:carbon-design-system/carbon-tutorial.git ``` -Or, if you prefer to use HTTPS instead of SSH with your remotes: - +*HTTPS* ```bash git remote add upstream https://github.com/carbon-design-system/carbon-tutorial.git ``` From 6685e7b2c6ebd7dd099722490459ec567709d803 Mon Sep 17 00:00:00 2001 From: Josefina Mancilla <32556167+jnm2377@users.noreply.github.com> Date: Thu, 7 Oct 2021 15:45:48 -0500 Subject: [PATCH 2/3] Update src/pages/developing/react-tutorial/step-1.mdx --- src/pages/developing/react-tutorial/step-1.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/developing/react-tutorial/step-1.mdx b/src/pages/developing/react-tutorial/step-1.mdx index 73ad3a2d04f..12971d8ec06 100644 --- a/src/pages/developing/react-tutorial/step-1.mdx +++ b/src/pages/developing/react-tutorial/step-1.mdx @@ -78,7 +78,7 @@ you have completed this tutorial step. There are two choices: SSH or HTTPS git remote add upstream git@github.com:carbon-design-system/carbon-tutorial.git ``` -*HTTPS* +#### HTTPS ```bash git remote add upstream https://github.com/carbon-design-system/carbon-tutorial.git ``` From 71fc142a8c785b4fed5cc8579cad51dc2410609c Mon Sep 17 00:00:00 2001 From: Josefina Mancilla <32556167+jnm2377@users.noreply.github.com> Date: Thu, 7 Oct 2021 15:45:54 -0500 Subject: [PATCH 3/3] Update src/pages/developing/react-tutorial/step-1.mdx --- src/pages/developing/react-tutorial/step-1.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/developing/react-tutorial/step-1.mdx b/src/pages/developing/react-tutorial/step-1.mdx index 12971d8ec06..49ec592c3b8 100644 --- a/src/pages/developing/react-tutorial/step-1.mdx +++ b/src/pages/developing/react-tutorial/step-1.mdx @@ -72,7 +72,7 @@ cd carbon-tutorial Add a remote called `upstream` so we can eventually submit a pull request once you have completed this tutorial step. There are two choices: SSH or HTTPS -*SSH* +#### SSH ```bash git remote add upstream git@github.com:carbon-design-system/carbon-tutorial.git