<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Mert Gör</title>
    <description>The latest articles on DEV Community by Mert Gör (@hwpplayer1).</description>
    <link>https://dev.to/hwpplayer1</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F373694%2F8eac2acb-a10c-4f03-b17d-d96b3a5efaf0.png</url>
      <title>DEV Community: Mert Gör</title>
      <link>https://dev.to/hwpplayer1</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hwpplayer1"/>
    <language>en</language>
    <item>
      <title>A Guide for Hackers who want to become a committer</title>
      <dc:creator>Mert Gör</dc:creator>
      <pubDate>Fri, 20 Mar 2026 04:47:12 +0000</pubDate>
      <link>https://dev.to/hwpplayer1/a-guide-for-hackers-who-want-to-become-a-committer-1c1c</link>
      <guid>https://dev.to/hwpplayer1/a-guide-for-hackers-who-want-to-become-a-committer-1c1c</guid>
      <description>&lt;h1&gt;
  
  
  A Guide for Hackers who want to become a committer
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiab4k4k1k81e861qle80.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiab4k4k1k81e861qle80.png" alt="Free Software"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This repository includes the path to become a committer with any kind of git oriented workflow to push commits to any kind of forge.&lt;/p&gt;

&lt;h1&gt;
  
  
  Setting SSH Keys
&lt;/h1&gt;

&lt;p&gt;Please read : &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent" rel="noopener noreferrer"&gt;https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account" rel="noopener noreferrer"&gt;https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Configuring GPG Key
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://docs.github.com/en/authentication/managing-commit-signature-verification/generating-a-new-gpg-key" rel="noopener noreferrer"&gt;https://docs.github.com/en/authentication/managing-commit-signature-verification/generating-a-new-gpg-key&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;After generating GPG Key please run :&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;gpg &lt;span class="nt"&gt;--list-secret-keys&lt;/span&gt; &lt;span class="nt"&gt;--keyid-format&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;long
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Then run this command but replace

&lt;code&gt;3AA5C34371567BD2&lt;/code&gt;

with your GPG Key ID:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;gpg &lt;span class="nt"&gt;--output&lt;/span&gt; secret.key &lt;span class="nt"&gt;--export-secret-keys&lt;/span&gt; 3AA5C34371567BD2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Then run this command for Revocation Certificate but replace

&lt;code&gt;3AA5C34371567BD2&lt;/code&gt;

with your GPG Key ID:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;gpg &lt;span class="nt"&gt;--output&lt;/span&gt; revoke.asc &lt;span class="nt"&gt;--gen-revoke&lt;/span&gt; 3AA5C34371567BD2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt; Then export your public key with this command but replace

&lt;code&gt;3AA5C34371567BD2&lt;/code&gt;

with your GPG Key ID :
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;gpg &lt;span class="nt"&gt;--armor&lt;/span&gt; &lt;span class="nt"&gt;--export&lt;/span&gt; 3AA5C34371567BD2 &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; 3AA5C34371567BD2.asc
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;&lt;p&gt;publish to &lt;a href="https://keyserver.pgp.com/vkd/GetWelcomeScreen.event" rel="noopener noreferrer"&gt;PGP Global Directory&lt;/a&gt; , import key , trust and sign with Thunderbird Email Client or any other client&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;After this backup your secret.key and revoke.asc to an external disk and keep it safe.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Then open your public key with a text editor and copy all text and add your Public Key to GitHub like told here : &lt;a href="https://docs.github.com/en/authentication/managing-commit-signature-verification/adding-a-gpg-key-to-your-github-account" rel="noopener noreferrer"&gt;https://docs.github.com/en/authentication/managing-commit-signature-verification/adding-a-gpg-key-to-your-github-account&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  For signing Commits with your GPG Key
&lt;/h1&gt;

&lt;p&gt;Please read this : &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits" rel="noopener noreferrer"&gt;https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.github.com/en/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key" rel="noopener noreferrer"&gt;https://docs.github.com/en/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To check :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;chmod&lt;/span&gt; +x git-sign-check.sh
./git-sign-check.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h1&gt;
  
  
  Configuring User Email and User Name for commits
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://docs.github.com/en/get-started/getting-started-with-git/setting-your-username-in-git" rel="noopener noreferrer"&gt;https://docs.github.com/en/get-started/getting-started-with-git/setting-your-username-in-git&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/setting-your-commit-email-address" rel="noopener noreferrer"&gt;https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/setting-your-commit-email-address&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Conclusion
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;We have generated SSH Key and added our public SSH Key to our GitHub account.&lt;/li&gt;
&lt;li&gt;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.&lt;/li&gt;
&lt;li&gt;For signing commit we configured our git account.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;happy hacking!...&lt;/strong&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Where we store this documentation
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://source.masscollabs.xyz/masscollaborationlabs/hacker-how-to" rel="noopener noreferrer"&gt;https://source.masscollabs.xyz/masscollaborationlabs/hacker-how-to&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://github.com/hwpplayer1/hacker-how-to" rel="noopener noreferrer"&gt;https://github.com/hwpplayer1/hacker-how-to&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://gitlab.com/masscollabs/masscollaborationlabs/hacker-how-to" rel="noopener noreferrer"&gt;https://gitlab.com/masscollabs/masscollaborationlabs/hacker-how-to&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://git.sr.ht/%7Emertgor/hacker-how-to" rel="noopener noreferrer"&gt;https://git.sr.ht/~mertgor/hacker-how-to&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://git.disroot.org/hwpplayer1/hacker-how-to" rel="noopener noreferrer"&gt;https://git.disroot.org/hwpplayer1/hacker-how-to&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://codeberg.org/hwpplayer1/hacker-how-to" rel="noopener noreferrer"&gt;https://codeberg.org/hwpplayer1/hacker-how-to&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  License
&lt;/h1&gt;

&lt;p&gt;&lt;a href="//by-sa.markdown"&gt;CC BY-SA 4.0 or later&lt;/a&gt;&lt;/p&gt;

</description>
      <category>git</category>
      <category>github</category>
      <category>hacker</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
