-
Notifications
You must be signed in to change notification settings - Fork 0
Workflow for committing code to GitHub
Nick Walker edited this page Jan 19, 2018
·
1 revision
This page does not cover introductory Git or GitHub knowledge. Please see the other tutorials for that information.
- Create a branch off of master for your purpose in the repository that you will be making changes to.
- Commit work to this branch and push it regularly. Verify periodically that your code is passing CI checks.
- When (if ever) you think your code is ready to come to master, open a pull request.
- Bring your branch up to date with master (merge master into your branch).
- Verify that your branch can run the regression tests
- Ask for a reviewer to look over your code. This person should also have the necessary permissions to merge your pull request.