Git - add the ability to disable commit signing (#291822)

This commit is contained in:
Ladislau Szomoru
2026-01-30 20:45:00 +01:00
committed by GitHub
parent 17969fbf25
commit bae323865a
3 changed files with 14 additions and 5 deletions

View File

@@ -177,6 +177,11 @@ export interface CommitOptions {
all?: boolean | 'tracked';
amend?: boolean;
signoff?: boolean;
/**
* true - sign the commit
* false - do not sign the commit
* undefined - use the repository/global git config
*/
signCommit?: boolean;
empty?: boolean;
noVerify?: boolean;