I created a commit with the purpose to unhide a feature, the code change is to only uncomment some lines of code and show the feature, so now the feature will be displayed to the user.
Should this commit type be feat
or chore
?
I think it should be chore
because it doesn‘t add the feature to the code, only allows it to be displayed, but from user POV it is a new feature, what is your opinion?
feat: activate feature X
because you are in fact functionally adding a feature, even though it's not in this commit that all the code got written. – Garlaand