Skip to content

Commit 3dee9ad

Browse files
committed
Update expectations and sync guidance for d7e9065. Remove superfluous .git from https.
1 parent dc5ada8 commit 3dee9ad

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

getting-started/git-boot-camp.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ You will only need to do this once per machine. From your command line::
5454
It is also recommended to configure an ``upstream`` remote repository::
5555

5656
cd cpython
57-
git remote add upstream git@github.com:python/cpython.git
57+
git remote add upstream https://github.com/python/cpython
5858

5959
You can also use SSH-based or HTTPS-based URLs.
6060

@@ -82,7 +82,7 @@ and ``upstream`` pointing to the official CPython repository::
8282

8383
origin git@github.com:<username>/cpython.git (fetch)
8484
origin git@github.com:<username>/cpython.git (push)
85-
upstream git@github.com:python/cpython.git (fetch)
85+
upstream https://github.com/python/cpython (fetch)
8686
upstream git@github.com:<username>/cpython.git (push)
8787

8888
To verify the upstream for ``main``::

getting-started/setup-building.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ You will only need to execute these steps once per machine:
7979
6. Configure an ``upstream`` remote::
8080

8181
$ cd cpython
82-
$ git remote add upstream https://github.com/python/cpython.git
82+
$ git remote add upstream https://github.com/python/cpython
8383

8484
7. Configure ``git`` to pull ``main`` from the ``upstream`` remote::
8585

@@ -95,7 +95,7 @@ You will only need to execute these steps once per machine:
9595
$ git remote -v
9696
origin git@github.com:<your-username>/cpython.git (fetch)
9797
origin git@github.com:<your-username>/cpython.git (push)
98-
upstream git@github.com:python/cpython.git (fetch)
98+
upstream https://github.com/python/cpython (fetch)
9999
upstream git@github.com:<your-username>/cpython.git (push)
100100
$ git config branch.main.remote
101101
upstream

0 commit comments

Comments
 (0)