Gemini. Edited.
To use SSH signing instead of GPG for Git commits, follow these three quick steps:
git config --global gpg.format ssh
git config --global user.signingkey ~/.ssh/id_ed25519.pub
git config --global commit.gpgsign trueThis way all your messages would be signed and have verified tag. (Tested and working on Gitlab)
https://docs.gitlab.com/user/project/repository/signed_commits/ssh/