-
I did some work on adding support for thoose chips. https://github.com/hitech95/Arduino_Core_STM32/commits/feature/G030CxT Any suggestion before opening the PR? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hi @hitech95 Atomic means to split each specific dev into specific commit. 1 commit = 1 subject.
About signed-off: It is not mandatory but it helps to find commit by signed-off for example. |
Beta Was this translation helpful? Give feedback.
-
Another question, wich naming convention should I use?, i've seen somne convetional commits and some other more "random" description in the subject. Most imporatant question is what to set the framework version in the Readme.md |
Beta Was this translation helpful? Give feedback.
-
About naming convention, now I try to use conventional commit syntax to be able to use automatic changelog generation In the Readme in general I set the next milestone in bold and 💛 |
Beta Was this translation helpful? Give feedback.
Hi @hitech95
All is explained here but I guess this is the reason you ask this.
https://github.com/stm32duino/Arduino_Core_STM32/blob/main/CONTRIBUTING.md#4-commit-messages
Atomic means to split each specific dev into specific commit. 1 commit = 1 subject.
This allows to easily rework the PR or revert one thing if needed. If all the code is only in one commit it is hard to revert one dedicated part of the code.
This is stated here: https://www.freshconsulting.com/insights/blog/atomic-commits/
About signed-off:
Sign-off is a requirement for…