X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=pep-git.txt;fp=pep-git.txt;h=52193f080df976c202833790ad0fb3b360a62c6b;hb=2bbe591014a6459b53ee52628e5d5df74506b393;hp=60d08b65cd08da824ce1a8b049740a6fe60bebed;hpb=56f550d92dde40538303f0011fa67cb276f197de;p=git-wiki.git 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