Sign git commits with GPG

git, git-sign, gnupg, pgp

Solution

`git commit -S` (requires git >= 1.7.9).

Problem

Is there a way to sign git commits with gpg? It's so easy with tags (using `-s` instead of `-a`), it seems there would be a similar function for commits.

Original source

Related problems