1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-28 16:02:01 +03:00

fix: Make tag operation use GPG helper to run signing in sub-process

This commit is contained in:
Chris McDonnell
2025-03-15 23:32:47 -04:00
committed by Stefan Haller
parent f779a5878d
commit c06d4e7b18
4 changed files with 28 additions and 24 deletions

View File

@ -80,6 +80,10 @@ func (self *ConfigCommands) NeedsGpgSubprocessForCommit() bool {
return self.NeedsGpgSubprocess(CommitGpgSign)
}
func (self *ConfigCommands) GetGpgTagSign() bool {
return self.gitConfig.GetBool(string(TagGpgSign))
}
func (self *ConfigCommands) GetCoreEditor() string {
return self.gitConfig.Get("core.editor")
}