-
Notifications
You must be signed in to change notification settings - Fork 14
Git Workflow
Anthony Nandaa edited this page Oct 16, 2016
·
1 revision
- Fork the repo to your account
- Clone the forked repo to your dev machine
- Work from a (feature) branch, off the
develop
branch. - Branch naming convention:
<type-acronym>-<issue-number>-<short-title>
, eg.ft-8-oath2-integration
Before raising your PR:
- git rebase with our
develop
branch - Run the tests and make sure they are passing
- Check for any linting issues, and have them fixed
- Raise the PR (fix any issues raised by the continuous-integration platforms)
- Wait for it to be merged by one of the team leads.