-
Notifications
You must be signed in to change notification settings - Fork 1
Development Workflow
rosoarv edited this page Mar 14, 2017
·
4 revisions
- Discuss/Decide major goals and plans (Sprint Planning)
- Create small issues(tickets) in Github based from trello backlogs and bugs
- Create a branch in the repo using the issue number. Ex.
access-11 - Work on the issue.
- Only change the code necessary to the issue.
- Commit should have
[branchname]in the message - Commit message should describe the code change. Ex.
git commit -m "[access-11] updated the spaces and indents.
- Create a pull request after resolving the issue on your branch
- Pull request should have branchname in the title. Ex.
[access-10] CRUD: Manage Users
- Comment the link of the pull request to the related issue for code review
- Merge branch to master if pull request is approved by the QA and Lead Developer
- Delete branch and close issue after merging to master