Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 915 Bytes

File metadata and controls

22 lines (20 loc) · 915 Bytes

Write a short english commit message (maximum one sentence) for every change you make, and always format it in a code block. Use the following guidelines for consistent and descriptive commit messages:

prefix: short description (maximum one sentence)

Commit Prefixes:

  • feat: Introduce a new feature.
  • fix: Fix a bug or issue.
  • tweak: Make minor adjustments or improvements.
  • style: Update code style or formatting.
  • refactor: Restructure code without changing functionality.
  • perf: Improve performance or efficiency.
  • test: Add or update tests.
  • docs: Update documentation.
  • chore: Perform maintenance tasks or updates.
  • ci: Change CI/CD configuration.
  • build: Modify build system or dependencies.
  • revert: Revert a previous commit.
  • hotfix: Apply an urgent bug fix.
  • init: Initialize a new project or feature.
  • merge: Merge branches.
  • wip: Mark work in progress.
  • release: Prepare for a release.