From 80e220c6fb0980744764d7c4fd9298d4a324d80b Mon Sep 17 00:00:00 2001 From: Moritz Rohner <81348362+m0r1tzR@users.noreply.github.com> Date: Thu, 5 May 2022 14:41:07 +0200 Subject: [PATCH] Fix typo octocat and replace with YOUR_USERNAME I replaced the "octocat" in line 157 with "YOUR_USERNAME" so it matches the naming conventions of the other command line snippets in the document. --- content/get-started/quickstart/fork-a-repo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/get-started/quickstart/fork-a-repo.md b/content/get-started/quickstart/fork-a-repo.md index dd6c00221e..4f88dbce63 100644 --- a/content/get-started/quickstart/fork-a-repo.md +++ b/content/get-started/quickstart/fork-a-repo.md @@ -154,7 +154,7 @@ When you fork a project in order to propose changes to the original repository, 6. Type `git remote add upstream`, and then paste the URL you copied in Step 3 and press **Enter**. It will look like this: ```shell - $ git remote add upstream https://{% data variables.command_line.codeblock %}/octocat/Spoon-Knife.git + $ git remote add upstream https://{% data variables.command_line.codeblock %}/YOUR_USERNAME/Spoon-Knife.git ``` 7. To verify the new upstream repository you have specified for your fork, type `git remote -v` again. You should see the URL for your fork as `origin`, and the URL for the original repository as `upstream`.