Hot take: Even these ‘useless’ comments help, since they relieve you of the burden of reading the code itself, even if it’s trivial. One line of English is easier to parse than one line of trivial code.
Hello! I'm a hobbyist in this space (scripting/coding), does anyone here have a:
gold standard of what commit messages should look like?
common practice/etiquette for commit message?
I never had a team or guide or mentor and when I saw this i felt that my commits are like smoke signals describing that there's a fire. which isnt really helpful.
I tried to contribute to a python module that I use daily, my PR was so over engineered (iirc i added just 3 lines, but with tests, screenshots, CI/CD) i think to compensate for my lack of experience that I got called out ("wow this is pretty extreme just for that feature").
The gold standard, as so often, is to consult an oracle able to tell you what questions you will be asking when looking at the comment or commit in the future. Then answer those questions and write them down.
In lieu of an oracle, use your experience and best judgement.
Oh and never write whole papers to explain what you're doing, unless you're actually writing a whole paper. Instead, drop a cheeky doi;// URI as the only comment of the whole file to document that you're an experienced enough programmer to copy from papers instead of stack overflow.
My personal cent:
Some tools strongly suggest that your commit messages should not exceed 50 characters in the first line, and 80 characters on every other line. While the 80-character rule makes sense if you’re using a terminal (and someone on your team will even if you don’t), I strongly disagree with the 50-character rule. If you want to be in any way clear what you did, 50 characters is simply not enough even for the subject line.
The reason for the approximately 50 character limit is because there's many tools that display a single line and will truncate it if it's more than about that length (though really the point of truncation can vary wildly -- plenty of tools will let you go twice that before they cut you off). So if your one line summary is too long, it'll be cut off and harder to understand your commit at a glance.
You always can elaborate in a second paragraph, at any rate.