0

To respect the Conventional Commits guide, what type (fix, feat, chore, ...) of commit should we use when it is related to an update of a git submodule ?

Best regards,

erakis
  • 60
  • 3
  • 12
  • Possible duplicate https://stackoverflow.com/questions/65855111/what-would-be-a-good-commit-message-for-updating-package-versions-using-conventi – Gruber Jul 22 '21 at 00:55

2 Answers2

1

This sounds like a dependency update. I'd use build scope like so:

build(gitmodule): Update thing to a08fc4a (version 1.2.3)
Kare Nuorteva
  • 1,046
  • 11
  • 12
0

if you are using VS Code as your editor. You can use Conventional Commits extension to figure what kind of commit to use. Other than that I can also suggest you to look at this website Conventional Commits Website

Ömer Ayhan
  • 73
  • 1
  • 4