Replies: 7 comments 1 reply
-
Sometimes it's hard to determine the project part when commit carries some changes in multiple areas such as lib, bash optimization, syntax etc. at once. How about we follow the looser version of this guideline:
Are there any disadvantages to said form? |
Beta Was this translation helpful? Give feedback.
-
yeah, i guess that would make sense |
Beta Was this translation helpful? Give feedback.
-
hold on, isn't that just bad practice? like the way i see it is that there is only one commit per specific change, so that the git history is clearly readable. for example, a series of commits clearly describes what happened: instead of just one commit (not to mention the enormous diff size) |
Beta Was this translation helpful? Give feedback.
-
I understand the benefits of splitting commits into smaller parts. |
Beta Was this translation helpful? Give feedback.
-
I agree with @arapower. It'd be a mess if we forced that to other contributors. I know that you like to keep things clean as possible @b1ek but since this repository isn't that large and we're still getting momentum - we should be more swift. We can always switch to the more strict pattern once Amber gets to the more stable and feature-complete versions. What do you think all? |
Beta Was this translation helpful? Give feedback.
-
I'll convert this conversation to a discussion as it's in the discussions stage. We can create an issue based on it anytime. |
Beta Was this translation helpful? Give feedback.
-
I use https://www.conventionalcommits.org/en/v1.0.0/ in all my projects as standard |
Beta Was this translation helpful? Give feedback.
-
currently, everyone commits as they want to.
i dont like it because its inconsistent. we should figure out which commit style we'd adopt.
i propose this one:
type_of_commit: project_part: commit_msg
type_of_commit
fix
,feat
,refactor
,docs
,misc
andmerge
(allowed only for merge commits)project_part
stdlib
,compiler
,module X
(in src/modules),tests
(but not limited to these)commit_msg
rewrite X to be Y
) in neutral tone describing what the commit does and that should not start with a capital letterBeta Was this translation helpful? Give feedback.
All reactions