Skip to content

Collaborator's guide

Ivan Kalita edited this page Sep 19, 2015 · 2 revisions

Main workflow:

  • Choose task in JIRA (for example, the task with code number GAME-777).
  • Create your own branch with name of your task (GAME-777)
git checkout master
git checkout -b GAME-777
  • Do some work and commit it. Write commit message like:
Some commit message title
GAME-777

It will link this commit with JIRA task with code GAME-777. For more available options watch github JIRA integration.

  • When the task is completed (and you think, that it is completed), push it to repository
git push origin GAME-777
  • Go to repository page (on github.com) and create pull request from your branch.
  • Wait for resolution about your task. If there are some bugs/smth else, you should go to step 3, otherwise, mark your task (GAME-777) as "Done" in JIRA.
Clone this wiki locally