зеркало из https://github.com/microsoft/git.git
Merge branch 'js/git-gui-commit-gpgsign'
"git commit-tree" stopped reading commit.gpgsign configuration variable that was meant for Porcelain "git commit" in Git 2.9; we forgot to update "git gui" to look at the configuration to match this change. * js/git-gui-commit-gpgsign: git-gui: respect commit.gpgsign again
This commit is contained in:
Коммит
e6a51afba4
|
@ -369,6 +369,9 @@ A rescan will be automatically started now.
|
|||
# -- Create the commit.
|
||||
#
|
||||
set cmd [list commit-tree $tree_id]
|
||||
if {[is_config_true commit.gpgsign]} {
|
||||
lappend cmd -S
|
||||
}
|
||||
foreach p [concat $PARENT $MERGE_HEAD] {
|
||||
lappend cmd -p $p
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче