]> git.phdru.name Git - git-wiki.git/commitdiff
Explain creation of a remote named ``origin``
authorOleg Broytman <phd@phdru.name>
Mon, 24 Aug 2015 12:54:47 +0000 (15:54 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 24 Aug 2015 12:54:47 +0000 (15:54 +0300)
pep-git.txt

index f2ce4c151d60a78928bd3879afbe2ec018f952c8..404171eb890beb07f5454467b2152b6cb3d7da7e 100644 (file)
@@ -180,9 +180,10 @@ When you do an initial clone like this::
     $ git clone -b v1 http://git.python.org/python.git
 
 git clones remote repository ``http://git.python.org/python.git`` to
-directory ``python``, creates remote-tracking branches, creates a
-local branch ``v1``, configure it to track upstream remotes/origin/v1
-branch and checks out ``v1`` into the working directory.
+directory ``python``, creates a remote named ``origin``, creates
+remote-tracking branches, creates a local branch ``v1``, configure it
+to track upstream remotes/origin/v1 branch and checks out ``v1`` into
+the working directory.
 
 Updating local and remote-tracking branches
 -------------------------------------------