1 KiB
1 KiB
Git Rules
Branch Naming
| Type | Format | Example |
|---|---|---|
| Feature | feature/AND-xxx_short_description |
feature/AND-13391_balance_fetcher |
| Bugfix | bugfix/AND-xxx_short_description |
bugfix/AND-14000_fix_crash |
| Release | releases/x.xx |
releases/5.36 |
| Hotfix | releases/x.xx.x |
releases/5.36.1 |
Key branches:
develop— main integration branch, all feature/bugfix branches merge herereleases/x.xx— release branches, branched fromdevelopreleases/x.xx.x— hotfix branches, branched fromreleases/x.xx
Commit Messages
Format: AND-xxx Description
- Start with the Jira task number (AND-xxx)
- Followed by a space and a short description in English
- Example:
[REDACTED_TASK_KEY] Finalize CryptoCurrencyBalanceFetcher refactoring