{"id":27689639,"url":"https://github.com/abdulqasem-bakhshi/verified-commits-github","last_synced_at":"2026-07-18T16:07:44.925Z","repository":{"id":286626695,"uuid":"961974773","full_name":"Abdulqasem-Bakhshi/verified-commits-github","owner":"Abdulqasem-Bakhshi","description":"This is a step by step process to set up verified commits for every commit you make on GitHub.","archived":false,"fork":false,"pushed_at":"2025-04-12T11:44:39.000Z","size":36,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-04T21:09:07.798Z","etag":null,"topics":["commit","github","tutorial","verified"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Abdulqasem-Bakhshi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-07T13:09:44.000Z","updated_at":"2025-04-12T11:44:42.000Z","dependencies_parsed_at":"2025-10-04T20:48:45.509Z","dependency_job_id":null,"html_url":"https://github.com/Abdulqasem-Bakhshi/verified-commits-github","commit_stats":null,"previous_names":["abdulqasem-bakhshi/verified-commits-github"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Abdulqasem-Bakhshi/verified-commits-github","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Abdulqasem-Bakhshi%2Fverified-commits-github","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Abdulqasem-Bakhshi%2Fverified-commits-github/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Abdulqasem-Bakhshi%2Fverified-commits-github/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Abdulqasem-Bakhshi%2Fverified-commits-github/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Abdulqasem-Bakhshi","download_url":"https://codeload.github.com/Abdulqasem-Bakhshi/verified-commits-github/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Abdulqasem-Bakhshi%2Fverified-commits-github/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35622950,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-18T02:00:07.223Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["commit","github","tutorial","verified"],"created_at":"2025-04-25T10:34:31.925Z","updated_at":"2026-07-18T16:07:44.907Z","avatar_url":"https://github.com/Abdulqasem-Bakhshi.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Verified-Commits-GitHub\nThis is a step by step process on setting up verified commits for every commit in GitHub.\n\n# Steps To Follow In A Nutshell.\n1. **\"# Steps To Create GPG Key.\"**\n2. **\"# Steps To Configure GPG Key.\"**\n3. Close and Open the Termianl again.\n4. Commit and then push your repository. You'll be asked for Passphrase you've set.\n5. Once done, check GitHub and you should see the verified badge.\n\n\n# Steps To Create GPG Key.\n1. Download and install gpg. (https://www.gpg4win.org/)\n2. Open Vscode Terminal (Preferably Powershell as an administrator)\n3. Write **\"gpg --full-generate-key\"** for generating gpg key.\n4. Write **\"1\"** to choose **\"(1) RSA and RSA\"** type of key.\n5. Write **\"4096\"** for the RSA key size.\n6. Write **\"0\"** if you want the key to never expire.\n7. In **\"Real Name:\"** provide your real name you set on GitHub.\n8. In **\"Email address:\"** provide your email address your GitHub account is set. For privacy, you can use your GitHub noreply email. (See **# How To Get Noreply Email From GitHub?**)\n9. In **\"Comment:\"** you can skip by pressing enter.\n10. In **\"Change (N)ame, (C)omment, (E)mail, or (O)kay,/(Q)uit?\"** press **\"O\"** to preceed further.\n11. Write your passphrase. (**DO NOT SHARE THIS WITH ANYONE**).\n12. Now that the key is made, we need to configure the GPG Key into the local machine. (See **# Steps To Configure The GPG Key Into The Local Machine.**)\n\n\n# Steps To Configure The GPG Key Into The Local Machine.\n1. In terminal write **\"gpg --list-secret-keys --keyid-format=LONG\"**\n2. In line **\"sec\"** copy the string after **\"rsa4096/\"**. E.g., rsa4096/xxxxxxxx **(copy the x values only)**\n3. Write **\"gpg --armor --export\"** and then your rsa4096 key. E.g., **\"gpg --armor --export xxxxxxxx\"**\n4. Copy the generated block from **\"-----BEGIN PGP PUBLIC KEY BLOCK-----\"** till **\"-----END PGP PUBLIC KEY BLOCK-----\"**\n5. Add it to your GitHub GPG Key. (See **# Steps To Configure The GPG Key In GitHub**)\n6. To configure the terminal, write **\"git config --global user.name \"User Name\"\".** E.g., **\"git config --global user.name \"Mike Tyson\"\"**\n7. Write **\"git config --global user.signingkey\"** and write your **\"Key ID\"** (you can take it from your GPG Keys in the SSH and GPG Keys (Tab)). E.g., **\"git config --global user.signingkey xxxxxxxx\"**\n8. Write **\"git config --global commit.gpgsign true\"**\n9. Write **\"git config --global tag.gpgsign true\"**\n10. Now we need to specify the GPG installation file for terminal. (See **\"# How To Find The GPG Installation File.\"**)\n11. Copy the path and write **\"git config --global gpg.program \"path/gpg.exe\"\"** E.g., **\"git config --global gpg.program \"C:\\Program Files\\GnuPG/bin/gpg.exe\"\"**\n12. Write **\"git config --global --list\"** to see what we've made so far.\n13. Proceed to step 3 of **\"# Steps To Follow In A Nutshell.\"**\n\n\n# Steps To Configure The GPG Key On GitHub.\n1. GitHub -\u003e Profile -\u003e Settings -\u003e SSH and GPG Keys\n2. In GPG Keys click **\"New GPG key\"**\n3. For title, you can use your noreply GitHub email or anything you want.\n4. For Key, just paste the PGP PUBLIC KEY block and then click **\"Add GPG Key\"**\n\n\n# How To Get Noreply Email From GitHub?\n1. Login to GitHub **-\u003e** Profile -\u003e Settings **-\u003e** Emails (Tab) **-\u003e** In **\"Not visible in emails\"** Copy the email that goes as follows, xxxxxx+username@users.noreply.github.com\n\n\n# How To Find The GPG Installation File?\n1. Open Command Prompt (Preferably as an administrator)\n2. Write **\"where gpg\"**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdulqasem-bakhshi%2Fverified-commits-github","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabdulqasem-bakhshi%2Fverified-commits-github","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdulqasem-bakhshi%2Fverified-commits-github/lists"}