Search code examples
commitgit-commitconventional-commits

Semantic commit type when remove something


What semantic commit type is better to use, when I remove a feature: feat, refactor or something else?


Solution

  • you should use refactor,

    • feat: introduces a new feature to the codebase
    • fix: patches a bug in your codebase
    • refactor: A code change that neither fixes a bug nor adds a feature

    you can refer to angular/CONTRIBUTING Commit Message Guidelines