I wonder maybe it's about the time to discuss if we can use some common convention to write the git commit message, one of the most famous posts may be this: How to Write a Git Commit Message, following this convention can help:
Make the commit message cleaner and easier to read
Make the code tracing much more effective
Make the release work less complex as it'll save time on writing changelog(history.txt)/release note
It might be a little bit like coding style, which helps unify the format, prevent to just write anything we developers thought but the others can't understand, may also make the contributions from the others be easier, as a hard to understand commit message will increase to gap to join.
This post says about the 7 rules:
Separate subject from body with a blank line
Limit the subject line to 50 characters
Capitalize the subject line
Do not end the subject line with a period
Use the imperative mood in the subject line
Wrap the body at 72 characters
Use the body to explain what and why vs. how
They are all mentioned somewhere else already before, like in the Pro Git book, some style guides from famous languages, frameworks, or developers(including Linus Torvalds), you can find the reference in that blog post.
What do you think @transmission-remote-gui/development ?
I wonder maybe it's about the time to discuss if we can use some common convention to write the git commit message, one of the most famous posts may be this: How to Write a Git Commit Message, following this convention can help:
It might be a little bit like coding style, which helps unify the format, prevent to just write anything we developers thought but the others can't understand, may also make the contributions from the others be easier, as a hard to understand commit message will increase to gap to join.
This post says about the 7 rules:
They are all mentioned somewhere else already before, like in the Pro Git book, some style guides from famous languages, frameworks, or developers(including Linus Torvalds), you can find the reference in that blog post.
What do you think @transmission-remote-gui/development ?