DEV Community

Discussion on: Git Commands Ultimate Tutorial [Part 2]

Collapse
 
havarem profile image
André Jacques

You could talk about the git commit -S that uses GPG key to sign a commit. I just set it up this years and it looks great on GitHub !

Collapse
 
shreyasminocha profile image
Shreyas Minocha • Edited

You could also do git config --global commit.gpgsign 'true' to make this persistent. You'll need to set user.signingkey too, though.

Collapse
 
neshaz profile image
Nesha Zoric

That's really interesting! I will definitely check it out.