* [RFE] Add config option to always add --signoff to git commit
@ 2025-04-10 7:54 Oliver Gondža
2025-04-10 11:54 ` Junio C Hamano
0 siblings, 1 reply; 2+ messages in thread
From: Oliver Gondža @ 2025-04-10 7:54 UTC (permalink / raw)
To: git
Hello, I would lide to propose an enhancement.
As a user, I need several repositories to have my commits both gpg
signed, and their messages decorated with the `Signed-off-by:` trailer.
This is a requirement to have the contribution accepted by respective
communities.
The first part is easy to achieve using `commit.gpgsign=true`, but the
latter, not so much.
Caveats with current feature set:
- Passing `--signoff`/`-s` every time is easy to forget. Even more so
when some commits can be done by external tools (IDEs doing git pull
with merge, etc.)
- Creating Git alias almost get there, but one cannot override what `git
commit` does. So one have to remember to use the alias, that is error prone.
- Using custom hooks to pre-prepare the message is a bit more elaborate.
Scales poorly with growing number of repositories requiring signoff. Can
collide with other hooks touching the message for some other reason.
Possible courses of action:
- Introduce new config option `commit.signoff`, that would be
independent of `commit.gpgsign`. It would simply cause `git commit` to
always behave like `git commit --signoff`.
- Add 3rd possible value to `commit.gpgsign` to both sign and add trailer.
- Change `commit.gpgsign` semantics to always add the `Signed-off-by:`
trailer if set to true. Likely have compatibility implications.
- Train developers to never forget `--signoff`/`-s`, befriend `git
rebase --signoff` :-/
I appreciate any feedback. Thanks!
--
oliver
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-04-10 11:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-10 7:54 [RFE] Add config option to always add --signoff to git commit Oliver Gondža
2025-04-10 11:54 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).