diff --git a/getting-started/git-boot-camp.rst b/getting-started/git-boot-camp.rst index b5465cdb7a..c857f688e7 100644 --- a/getting-started/git-boot-camp.rst +++ b/getting-started/git-boot-camp.rst @@ -44,11 +44,13 @@ You will only need to do this once. 1. Go to https://github.com/python/cpython. -2. Press ``Fork`` on the top right. +2. Press ``Fork`` located near the top right of the page. -3. When asked where to fork the repository, choose to fork it to your username. +3. Uncheck the "Copy the ``main`` branch only" button. -4. Your forked CPython repository will be created at https://github.com//cpython. +4. Press the ``Create fork`` button. + +5. Your forked CPython repository will be created at ``https://github.com//cpython``. .. _clone-your-fork: @@ -105,6 +107,10 @@ To verify the upstream for ``main``:: It should emit ``upstream``, indicating to track/pull changes for ``main`` from the ``upstream`` remote. +Once this is verified, update your local clone with the upstream branches:: + + $ git fetch upstream + .. _set-up-name-email: