feature: add wip (work in progress) type (#1200)

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2025-04-16 19:39:24 +08:00
parent 9606f128e4
commit 928a0ad3c5
No known key found for this signature in database

View file

@ -12,6 +12,7 @@ namespace SourceGit.Models
{
new ConventionalCommitType("Features", "feat", "Adding a new feature"),
new ConventionalCommitType("Bug Fixes", "fix", "Fixing a bug"),
new ConventionalCommitType("Work In Progress", "wip", "Still being developed and not yet complete"),
new ConventionalCommitType("Reverts", "revert", "Undoing a previous commit"),
new ConventionalCommitType("Code Refactoring", "refactor", "Restructuring code without changing its external behavior"),
new ConventionalCommitType("Performance Improvements", "pref", "Improves performance"),