File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,20 @@ Pull Requests should be small to facilitate easier review. Keep them
23
23
self-contained, and limited in scope. Studies have shown that review quality
24
24
falls off as patch size grows. Sometimes this will result in many small PRs to
25
25
land a single large feature.
26
-
27
26
Checklist:
28
27
29
- 1. All pull requests *must * be made against the ``master `` branch.
30
- 2. Include tests for any functionality you implement. Contributions that
28
+ 1. Always create a new branch to work on a new issue::
29
+
30
+ $ git checkout -b <branch-name>
31
+
32
+ 2. Make sure your branch is up-to-date with upstream master before you file
33
+ a pull request.
34
+ 3. All pull requests *must * be made against the ``master `` branch.
35
+ 4. Include tests for any functionality you implement. Contributions that
31
36
improve existing tests are welcome.
32
- 3 . Update documentation as necessary and provide documentation for any new
37
+ 5 . Update documentation as necessary and provide documentation for any new
33
38
functionality.
34
- 4. In case of UI changes, please include screenshots.
35
- 5. Add yourself to ``CONTRIBUTORS.txt `` if you're not there already. :)
39
+ 6. In case of UI changes, please include screenshots.
36
40
37
41
If you do make any changes to models (modification or addition), make sure to
38
42
run ``python manage.py makemigrations `` to enable the server to migrate existing
You can’t perform that action at this time.
0 commit comments