y7usuf
4/20/2019 - 8:46 PM

Git Rules

Git Rules

Git Branch Naming Conventions

<type>/<name>

<type>

bug    - Code changes linked to a known issue.
feature - New feature.
relase - New Release.
improvement - Improvements of the current code or feature
fix/patch - fixes to the codebase.
hotfix - Quick fixes to the codebase.
misc   - other miscellaneous stuff
tests  -  everything about test related
experimental - every experimental reseach (will never be merged).

<name>

Always use dashes to seperate words, and keep it short.

Suffix <JIRA_NO> (Optional)

Commit message convention

<action-verb> <explanation>
<description (optional)>
Example
fix exported JS code from the data-click attribute
On scene reopening, path strings were manipulated by the pathHandler method. We had to ignore paths coming from JS code in data-click. A RegExp check now filters which paths should be manipulated.

Branch Examples

release/v3.1.4
feature/new-onboarding-screen
feature/new-unicorn-emoji-SV1002
hotfix/dockerfile-base-image
bug/login-ie