From 37bb519f8710d886bb45da88e9ce89c8f20168bc Mon Sep 17 00:00:00 2001 From: hat-owl <91843209+hat-owl@users.noreply.github.com> Date: Tue, 30 Aug 2022 04:10:34 -0700 Subject: [PATCH] Fix a typo (I think) in git clone progress text I compared the git clone progress text with the one in my terminal when I ran git clone on my fork of Spoon-Knife, in the way the instructions indicate. It appears that the "> remote ... remote ... remove: Total n (delta m), reused a (delta b)" contains a typo, with 'remove' instead of 'remote'. I fixed this in case it is a typo. --- 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 600c30dca4..9d3c9526b6 100644 --- a/content/get-started/quickstart/fork-a-repo.md +++ b/content/get-started/quickstart/fork-a-repo.md @@ -118,7 +118,7 @@ Right now, you have a fork of the Spoon-Knife repository, but you do not have th > Cloning into `Spoon-Knife`... > remote: Counting objects: 10, done. > remote: Compressing objects: 100% (8/8), done. - > remove: Total 10 (delta 1), reused 10 (delta 1) + > remote: Total 10 (delta 1), reused 10 (delta 1) > Unpacking objects: 100% (10/10), done. ```