Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 986 Bytes

Comitting Code.md

File metadata and controls

26 lines (19 loc) · 986 Bytes

Committing Code

Each project will have an architect who's responsible for the architecture & quality of the code and developers working with him.

Life cycle of a new feature:

1. Developer:

  • git checkout -b feature/T###-keyword or git flow feature start T###-keyword (using git flow)
    • e.g. T143-translations (on some projects we go without the T, this is not so important...)
  • Commit some code with message T### : short explanation
  • e.g. T172: Styling for login button
  • git push
  • Go to Github page and follow the prompts to create a new PR
  • Move Trello card to "Pull Request" column

2. Architect:

  • Check PR for code quality and consistency
  • Make recommendations

3. Developer

  • Respond to recommendations & make any changes

4. Architect

  • Merge PR
  • Move Trello card from "Pull Request" to next column