8000 Add introductory note for new and experienced git users by willingc · Pull Request #497 · python/devguide · GitHub
[go: up one dir, main page]

Skip to content
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
15 changes: 14 additions & 1 deletion gitbootcamp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@
Git Bootcamp and Cheat Sheet
============================

.. note::

This section provides instructions on common tasks in CPython's
workflow. It's designed to assist new contributors who have
some familiarity with git and GitHub.

If you are new to git and GitHub, please become comfortable with
these instructions before submitting a pull request. As there are several
ways to accomplish these tasks using git and GitHub, this section reflects
one method suitable for new contributors. Experienced contributors may
desire a different approach.


In this section, we'll go over some commonly used Git commands that are
relevant to CPython's workflow.

Expand Down Expand Up @@ -84,7 +97,7 @@ will reject all changesets having the wrong line endings::
Creating and Switching Branches
-------------------------------

.. note::
.. important::
Never commit directly to the ``master`` branch.

Create a new branch and switch to it::
Expand Down
0