Signing git commits with SSH keys

Posted on April 23, 2025

Git commit signing is a great way to prove the authenticity of your commits. While GPG has long been the standard, SSH signing is a newer and simpler alternative that uses the SSH keys you may already use for authentication. In this guide, we’ll walk …

devops git ssh

Securing SSH with ssh keys

Posted on November 23, 2022

In this article I’m going to describe how to secure a SSH server, so that it will only accept logins with ssh keys. Generate a set of personal ssh keys If you have already done this, you can skip this step. $ ssh-keygen The output should look …

sysadmin devops linux ssh