]> git.phdru.name Git - git-wiki.git/commitdiff
Replace http URLs with https in examples
authorOleg Broytman <phd@phdru.name>
Tue, 1 Sep 2015 18:19:08 +0000 (21:19 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 1 Sep 2015 18:19:08 +0000 (21:19 +0300)
pep-git.txt

index 60d08b65cd08da824ce1a8b049740a6fe60bebed..52193f080df976c202833790ad0fb3b360a62c6b 100644 (file)
@@ -118,7 +118,7 @@ local repo has two branches ``v1`` and ``master``. For most examples
 the currently checked out branch is ``master``. That is, it's assumed
 you have done something like that::
 
-    $ git clone http://git.python.org/python.git
+    $ git clone https://git.python.org/python.git
     $ cd python
     $ git branch v1 origin/v1
 
@@ -132,7 +132,7 @@ remotes/origin/v1 as its upstream remote-tracking branch.
 
 The same result can be achieved with commands::
 
-    $ git clone -b v1 http://git.python.org/python.git
+    $ git clone -b v1 https://git.python.org/python.git
     $ cd python
     $ git checkout --track origin/master
 
@@ -181,9 +181,9 @@ fast-forwards, merges or rebases local branches.
 
 When you do an initial clone like this::
 
-    $ git clone -b v1 http://git.python.org/python.git
+    $ git clone -b v1 https://git.python.org/python.git
 
-git clones remote repository ``http://git.python.org/python.git`` to
+git clones remote repository ``https://git.python.org/python.git`` to
 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