-
Notifications
You must be signed in to change notification settings - Fork 8
Fixing bugs
Robert Martin edited this page Dec 14, 2016
·
3 revisions
- Create an issue documenting the problem and any known causes.
- Check out a branch referencing the issue number, like
iss-214
. - Make code changes.
- Write a unit test based on the scenario that the produced the bug. Make sure it fails on
master
and passes on the issue branch. - When you commit your changes, reference the issue number in your commit message like
Fix a bug where pages weren't loading, closes #214
. This will automatically close the issue and leave a reference to the work you did. More on that here. - Create a pull request for someone to review your changes.