We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87f0dce commit 4d3a94eCopy full SHA for 4d3a94e
docs/dev/getting-set-up.rst
@@ -66,11 +66,14 @@ Creating a branch for your feature
66
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
67
68
All development should occur in branches dedicated to the particular work being done.
69
+Additionally, unless you are a maintainer, all changes should be directed at the `master` branch.
70
You can create a branch with:
71
72
.. code:: shell
73
- git checkout -b {your-branch-name}
74
+ git checkout master # Starting from the master branch
75
+ git pull # Syncing with the repo
76
+ git checkout -b {your-branch-name} # Making and changing to the new branch
77
78
.. _open-a-pr:
79
0 commit comments