]> git.phdru.name Git - git-wiki.git/blobdiff - pep-git.txt
Explain creation of a remote named ``origin``
[git-wiki.git] / 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
 -------------------------------------------