From: Oleg Broytman Date: Tue, 1 Sep 2015 18:19:08 +0000 (+0300) Subject: Replace http URLs with https in examples X-Git-Url: https://git.phdru.name/?p=git-wiki.git;a=commitdiff_plain;h=2bbe591014a6459b53ee52628e5d5df74506b393 Replace http URLs with https in examples --- diff --git a/pep-git.txt b/pep-git.txt index 60d08b6..52193f0 100644 --- a/pep-git.txt +++ b/pep-git.txt @@ -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