diff --git a/src/pages/developing/react-tutorial/step-1.mdx b/src/pages/developing/react-tutorial/step-1.mdx index 4d314feb99a..49ec592c3b8 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 ```