Training Point System - ?
Training Point System - ?
Introduction
Consistent and meaningful naming conventions for Git branches and commits contribute
to a more organized and understandable version control history. This guide outlines
the recommended naming conventions for branches and commits.
Format: feature/<task-number>-<short-description>
Example: feature/123_user_authentication
Bugfix Branches
Bugfix branches address and fix specific issues in the codebase.
Format: fix/<issue-number>-<short-description>
Example: fix/123_fix_login_issue
Release Branches
Release branches are created for preparing a new release.
Format: release/<version-number>
Example: release/1.0.0
Hotfix Branches
Hotfix branches address critical issues in the production environment.
Format: hotfix/<issue-number>-<short-description>
Example: hotfix/456-fix-security-vulnerability