This repository includes the path to become a committer with any kind of git oriented workflow to push commits to any kind of forge.
Find a file
Mert Gör fd7364104b
added release screenshot
Signed-off-by: Mert Gör <mertgor@qbnetworks.xyz>
2025-12-14 17:22:58 +03:00
img added release screenshot 2025-12-14 17:22:58 +03:00
presentations Read Changelog 2025-11-23 17:27:06 +03:00
.gitignore Added all file news as ChangeLog file into ChangeLog file 2024-02-01 02:44:45 +03:00
by-sa.markdown hacker how to with CC BY-SA 4.0 or any later 2023-12-22 00:01:32 +03:00
ChangeLog Read Changelog 2025-11-23 17:27:06 +03:00
git-sign-check.sh GPG Signed commit check script 2025-08-25 12:47:03 +03:00
hacker.en.md Read Changelog 2025-11-23 17:27:06 +03:00
hacker.tr.md Read Changelog 2025-11-23 17:27:06 +03:00
LICENSE copied by-sa.markdown to LICENSE 2023-12-22 00:08:42 +03:00
multiple_push.md Read Changelog 2025-11-23 17:27:06 +03:00
README.md Read Changelog 2025-11-23 17:27:06 +03:00
release.md added release screenshot 2025-12-14 17:22:58 +03:00
ssh-key-generator.sh ssh-key-generator.sh yazarı Yasin Yılmaz'dır. Ayrıca mobilde 2FA authenticator olarak örneğin Android'de Aegis, GNU/Linux masaüstünde Authenticator Flatpak uygulamaları ve parola saklamak için de yerelde saklanan KeepassXC kullanmalısınız. Tüm kritik verilerinizi de şifleri yani encrypted bir harici diskte saklamalısınız. 2025-08-07 18:16:07 +03:00

A Guide for Hackers who want to become a committer

Free Software

This repository includes the path to become a committer with any kind of git oriented workflow to push commits to any kind of forge.

Setting SSH Keys

Please read :

Configuring GPG Key

gpg --list-secret-keys --keyid-format=long
  • Then run this command but replace 3AA5C34371567BD2 with your GPG Key ID:
gpg --output secret.key --export-secret-keys 3AA5C34371567BD2
  • Then run this command for Revocation Certificate but replace 3AA5C34371567BD2 with your GPG Key ID:
gpg --output revoke.asc --gen-revoke 3AA5C34371567BD2
  • Then export your public key with this command but replace 3AA5C34371567BD2 with your GPG Key ID :
gpg --armor --export 3AA5C34371567BD2 > 3AA5C34371567BD2.asc

For signing Commits with your GPG Key

Please read this :

To check :

chmod +x git-sign-check.sh
./git-sign-check.sh

Configuring User Email and User Name for commits

Conclusion

  • We have generated SSH Key and added our public SSH Key to our GitHub account.
  • We have generated GPG Key, exported secret key, exported revocation certificate, published our public key to a server in this example PGP Global Directory and then we moved our secret.key and revoke.asc to an external disk. Then we added our GPG key to GitHub account.
  • For signing commit we configured our git account.

happy hacking!...

Where we store this documentation

License

CC BY-SA 4.0 or later