Whether the relevant diff is automatically shown when committing.
Whether to ask to stage all unstaged changes when committing and nothing is staged.
Hook run after creating a commit without the user editing a message.
This hook is run by magit-refresh
if this-command
is a member
of magit-post-commit-hook-commands
. This only includes commands
named magit-commit-*
that do not require that the user edits
the commit message in a buffer.
Also see git-commit-post-finish-hook
.
Whether to inhibit use of same window when showing diff while committing.
When writing a commit, then a diff of the changes to be committed is automatically shown. The idea is that the diff is shown in a different window of the same frame and for most users that just works. In other words most users can completely ignore this option because its value doesn’t make a difference for them.
However for users who configured Emacs to never create a new window even when the package explicitly tries to do so, then displaying two new buffers necessarily means that the first is immediately replaced by the second. In our case the message buffer is immediately replaced by the diff buffer, which is of course highly undesirable.
A workaround is to suppress this user configuration in this particular case. Users have to explicitly opt-in by toggling this option. We cannot enable the workaround unconditionally because that again causes issues for other users: if the frame is too tiny or the relevant settings too aggressive, then the diff buffer would end up being displayed in a new frame.
Whether the commit targeted by squash and fixup has to be confirmed.
When non-nil then the commit at point (if any) is used as default
choice. Otherwise it has to be confirmed. This option only affects
magit-commit-squash
and magit-commit-fixup
. The "instant" variants
always require confirmation because making an error while using
those is harder to recover from.
Whether using magit-commit-extend
changes the committer date.
Whether using magit-commit-reword
changes the committer date.