Am 28.08.25 um 10:58 schrieb Johannes Schindelin via GitGitGadget: > @@ -1130,6 +1130,9 @@ set argv0dir [file dirname [file normalize $::argv0]] > if {![info exists env(SSH_ASKPASS)]} { > set env(SSH_ASKPASS) [file join $argv0dir git-gui--askpass] > } > +if {![info exists env(GIT_ASKPASS)]} { > + set env(GIT_ASKPASS) [gitexec git-gui--askpass] Is this [gitexec ...] deliberate, or can this be [file join ...] like in the surrounding cases? If it is deliberate, we need an updated commit message and/or a comment, otherwise, I can amend locally while queuing. > +} > if {![info exists env(GIT_ASK_YESNO)]} { > set env(GIT_ASK_YESNO) [file join $argv0dir git-gui--askyesno] > }