Skip to content

Commit 25a17fe

Browse files
committed
Minor addition to contributing docs
1 parent 976aa18 commit 25a17fe

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/dev/getting-set-up.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,14 @@ Creating a branch for your feature
6666
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6767

6868
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.
6970
You can create a branch with:
7071

7172
.. code:: shell
7273
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
7477
7578
.. _open-a-pr:
7679

0 commit comments

Comments
 (0)