Comment on I've lately been making my git commit messages with AI
learningduck@programming.dev 1 year agoHow about prefixing your commit with a ticket number?
If a commit message has too much information, then the commit has too much changes
Comment on I've lately been making my git commit messages with AI
learningduck@programming.dev 1 year agoHow about prefixing your commit with a ticket number?
If a commit message has too much information, then the commit has too much changes
IAm_A_Complete_Idiot@sh.itjust.works 1 year ago
Not having to swap over to a ticketing system just to see the context of a change is really nice (Or to add context on why changes are done a certain way). One line that says what you changed, then any context such as why it was done that way, and important notes about that change works wonders. It’s pretty much the exact model the Linux kernel uses, and it makes looking at changes great for anyone down the line.
learningduck@programming.dev 1 year ago
Good idea