Skip to content

dev_quick_start_continue

Vyacheslav Semushin edited this page Mar 12, 2018 · 18 revisions

How to start working on an issue?

  • create a separate branch where you will be working on the issue. This branch should be based on the master branch:
$ git checkout -b ghXXX_meaningful_name master

where XXX is the issue number and meaningful_name is a very short description of the issue.

  • modify files that needed to add a feature/fix the issue, create commit(s)

  • after fixing an issue, run integration tests to be sure that you didn't break anything else

  • push branch to the GitHub

  • create Pull Request in php-coder/mystamps repository:

  • check the report from TravisCI and fix possible errors from different tools for static analysis

  • wait for a code review

  • (optional) create more commits to fix comments after code review

  • (optional) squash all the commits to one (and do git push -f)

Clone this wiki locally