Re: [PATCH] Handle non default git configurations with mklog

2025-07-07 Thread Pierre-Emmanuel Patry
On 7/7/25 3:41 PM, Alexander Monakov wrote: Is switching the algorithm actually necessary for solving the problem at hand? I think it is possible for the default algorithm to produce diffs that lead to poorly generated changelog entries, so forcing it here seems undesirable. I was not aware of

Re: [PATCH] Handle non default git configurations with mklog

2025-07-07 Thread Alexander Monakov
On Tue, 1 Jul 2025, Pierre-Emmanuel Patry wrote: > Mklog parses the diff content from prepare-commit-msg hook but fails > when git has been configured with some options (eg. mnemonicPrefix). > Forcing the default values for the prefixes and the algorithm would > set a distinct diff configuration

[PATCH] Handle non default git configurations with mklog

2025-07-01 Thread Pierre-Emmanuel Patry
Mklog parses the diff content from prepare-commit-msg hook but fails when git has been configured with some options (eg. mnemonicPrefix). Forcing the default values for the prefixes and the algorithm would set a distinct diff configuration supported by mklog and prevent most failures. contrib/Chan