dev git config - s-allius/tsun-gen3-proxy GitHub Wiki

Git Configuration

Code Signing

We are proud of the work that is created here and of every contribution that is made. We prefer to use signed Git commits to document and check which author has contributed what. To create signed Git commits, your local Git must be configured accordingly. The following shows how to set up simple signing with an SSH key.

ssh-keygen -t ed25519 -C "FIRSTNAME LASTNAME [email protected]" -f ~/.ssh/git-signing-key

git config --global user.name "FIRSTNAME LASTNAME"
git config --global user.email [email protected]
git config --global user.signingkey ~/.ssh/git-signing-key
git config --global gpg.format ssh
git config --global commit.gpgsign true
git config --global pull.rebase false

GitHub Code Verification

You can additionally add the generated key to GitHub for commit verification

⚠️ **GitHub.com Fallback** ⚠️