Files
salona/docs/version-control.md

614 B

Version Control

Branching Strategy

We follow the Gitflow branching strategy:

  • main: Production-ready code.
  • test: Latest development changes.
  • Feature/: New features.
  • Bugfix/: Bug fixes.
  • Refactor/: Refactor an old feature or code.

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...").

Examples

  • git commit -m "Fix button alignment"
  • git commit -m "Add login functionality"

Go back to Readme