vscode-commit-message-editor
vscode-commit-message-editor copied to clipboard
feat: add option for signing commits
I'd like to suggest adding two checkboxes that allow users to sign commits with:
- 'Signed-off-by:' using
git commit --signofforgit commit -sfor short form. - GPG Sign using
git commit --gpg-signorgit commit -Sfor signing with gpg key. Or without it usinggit commit --no-gpg-sign
As far as I know, these is an option called commit.gpgSign has boolean value indicating the default option for gpg signing commit. There isn't an option for signoff in git. But, there's one in VSCode git.alwaysSignOff which also has boolean value.
Good idea, I've added it to my TODO list.
Good idea, I've added it to my TODO list.
Thanks for your great work!