Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 665 Bytes

version-control.md

File metadata and controls

27 lines (18 loc) · 665 Bytes

Version Control

Branching Strategy

We follow the Gitflow branching strategy:

  • main: Production-ready code.
  • develop: Latest development changes.
  • feature/: New features.
  • bugfix/: Bug fixes.
  • release/: Preparation for a new release.

Commit Message Guidelines

  • Use present tense ("Add feature" not "Added feature").
  • Capitalize the first letter of the commit message.
  • Use imperative mood ("Move cursor to..." not "Moves cursor to...").
  • Reference issues by number (e.g., #123).

Examples

  • git commit -m "Fix button alignment"
  • git commit -m "Add login functionality (#45)"

Go back to Readme