Skip to content
This repository was archived by the owner on Nov 2, 2024. It is now read-only.

Latest commit

 

History

History
11 lines (8 loc) · 512 Bytes

File metadata and controls

11 lines (8 loc) · 512 Bytes

Version Control

  • Git is used as the primary version control system.
  • Production releases are done using git tags.

Git Branch Naming Convention

  • task/JIRA_TICKET_ID/short-description: Used for features and improvements.
  • bugfix/JIRA_TICKET_ID/short-description: Used for bug fixes!
  • refactor/short-description: Refactoring production code to make it more readable or extensible.
  • chore/short-description: Anything else, such as adding tests, updating documentation or removing unused code.