Skip to content

Improve forking instructions (#1375) #1376

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions getting-started/git-boot-camp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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/<username>/cpython.
4. Press the ``Create fork`` button.

5. Your forked CPython repository will be created at ``https://github.com/<username>/cpython``.

.. _clone-your-fork:

Expand Down Expand Up @@ -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:

Expand Down
Loading