]> git.phdru.name Git - git-wiki.git/commitdiff
Add more details about initial cloning
authorOleg Broytman <phd@phdru.name>
Mon, 8 Jun 2015 22:13:03 +0000 (01:13 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 8 Jun 2015 22:13:03 +0000 (01:13 +0300)
pep-git.txt

index 6365fb8c0825bedc7ebe0c2f2b48666f73d8ed91..5f1c1c918bbf7f603f1ee171c212f31cf61eb411 100644 (file)
@@ -118,10 +118,15 @@ done something like that::
     $ cd python
     $ git branch v1 origin/v1
 
+The first command clones remote repository into local directory
+`python``, creates a new local branch v2, sets remotes/origin/v2 as
+its upstream remote branch and checks it out into the working
+directory.
+
 The last command creates a new local branch v1 and sets
 remotes/origin/v1 as its upstream remote branch.
 
-The same result can achieved with commands::
+The same result can be achieved with commands::
 
     $ git clone -b v1 http://git.python.org/python.git
     $ cd python