Thanks for the great description in https://docs.codeberg.org/security/gpg-key/
I would recommend to add two points:
-
After adding the key to Codeberg (see https://docs.codeberg.org/security/gpg-key/#adding-your-gpg-key-to-codeberg) you also have to verify the key by creating a signature (this would be 7.)
-
When using an IDE (like Atom in my case) commits are not automatically signed, you have to set an additional git-option:
git config --global commit.gpgsign true
Thanks for the great description in https://docs.codeberg.org/security/gpg-key/
I would recommend to add two points:
* After adding the key to Codeberg (see https://docs.codeberg.org/security/gpg-key/#adding-your-gpg-key-to-codeberg) you also have to verify the key by creating a signature (this would be 7.)
* When using an IDE (like Atom in my case) commits are not automatically signed, you have to set an additional git-option:
~~~
git config --global commit.gpgsign true
~~~