DEV Community

Discussion on: Signed Git commits in VS Code

Collapse
 
sivaraam profile image
Kaartic Sivaraam

Nice post. It would be nice to have TL;DR at the top of the post that just covered the following content:

Finally you have to tell VS Code to append the -s flag to the git commit command, to use signed committing now. Open the settings, search for “gpg” and check the box “Enables commit signing with GPG”.

Alternatively you can add this line to your settings.json :

"git.enableCommitSigning": true

And that’s it! Now you can commit your changes in VS Codes Git integration and sign your work.

Collapse
 
devmount profile image
Andreas

Great suggestions - done. Many thanks (and sorry for the late reply - didn't see any notification about your comment).