Is there an easy way to make Git always signs each commit or tag that is created?
I tried it with something like:
alias commit = commit -S
But th
To make auto signing work pre git version 2.0, you'll have to add git alias for commit.
# git config --global alias.commit commit -S [alias] commit = commit -S