Skip to content

Development Workflow

rosoarv edited this page Mar 14, 2017 · 4 revisions
  1. Discuss/Decide major goals and plans (Sprint Planning)
  2. Create small issues(tickets) in Github based from trello backlogs and bugs
  3. Create a branch in the repo using the issue number. Ex. access-11
  4. 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.
  1. 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
  1. Comment the link of the pull request to the related issue for code review
  2. Merge branch to master if pull request is approved by the QA and Lead Developer
  3. Delete branch and close issue after merging to master

Clone this wiki locally