From e48f376bd8ca4be762c7ada709ab6cb464bba615 Mon Sep 17 00:00:00 2001 From: Yue Lin Ho Date: Wed, 17 Feb 2016 08:15:20 +0800 Subject: [PATCH] Fix issue #526: There is no *adding* remote repositories in previous sections. There is no `git add remote`, related command, or statement in previous sections, but `git clone`. And the only remote repository mentioned is "origin" which is added implicitly via clone command. Fix the sentence for that. --- book/02-git-basics/sections/remotes.asc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/book/02-git-basics/sections/remotes.asc b/book/02-git-basics/sections/remotes.asc index cffb0aca9..98aa31da0 100644 --- a/book/02-git-basics/sections/remotes.asc +++ b/book/02-git-basics/sections/remotes.asc @@ -63,7 +63,8 @@ Notice that these remotes use a variety of protocols; we'll cover more about thi ==== Adding Remote Repositories -We've mentioned and given some demonstrations of adding remote repositories in previous sections, but here is how to do it explicitly.(((git commands, remote))) +We've mentioned and given some demonstrations of how the 'clone' command implicitly adds the `origin` remote for you. +Here's how to add a new remote explicitly.(((git commands, remote))) To add a new remote Git repository as a shortname you can reference easily, run `git remote add `: [source,console]