From cc7633f3cdc838f6a30cc302ef387be5b1f88d69 Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Tue, 11 May 2021 23:16:05 +0200 Subject: [PATCH 01/16] git-verify-commit: add page --- pages/common/git-verify-commit.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pages/common/git-verify-commit.md diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md new file mode 100644 index 00000000000000..edc56dd8e5be79 --- /dev/null +++ b/pages/common/git-verify-commit.md @@ -0,0 +1,17 @@ +# git verify-commit + +> Check for GPG verification of commits. +> If GPG verification isn't present, nothing will be returned, even if extra options are chosen. +> More information . + +- Check git commits for a GPG signature: + +`git verify-commit {{commit SHA hash}}` + +- Check git commits for a GPG signature and show details of specified commit: + +`git verify-commit {{commit SHA hash}} -v` + +- Check git commits for a GPG signature and give RAW details: + +`git verify-commit {{commit SHA hash}} --raw` From 5a2023cdb45a89e865ff97f0193abd063b8b2379 Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Tue, 11 May 2021 23:19:05 +0200 Subject: [PATCH 02/16] Fixed bot issue --- pages/common/git-verify-commit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index edc56dd8e5be79..82fc50dc22d494 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -2,7 +2,7 @@ > Check for GPG verification of commits. > If GPG verification isn't present, nothing will be returned, even if extra options are chosen. -> More information . +> More information: . - Check git commits for a GPG signature: From 784c9402e6afe3f4a93049d926310ac5c314af95 Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Tue, 11 May 2021 23:17:13 +0100 Subject: [PATCH 03/16] Update pages/common/git-verify-commit.md --- pages/common/git-verify-commit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index 82fc50dc22d494..2cd305feec6719 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -10,7 +10,7 @@ - Check git commits for a GPG signature and show details of specified commit: -`git verify-commit {{commit SHA hash}} -v` +`git verify-commit {{commit SHA hash}} --verbose` - Check git commits for a GPG signature and give RAW details: From c246f5439cbe6e9bddd0aa637b4d2dc01584d8d5 Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Tue, 11 May 2021 23:29:27 +0100 Subject: [PATCH 04/16] Update pages/common/git-verify-commit.md Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> --- pages/common/git-verify-commit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index 2cd305feec6719..d94986af135fa8 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -12,6 +12,6 @@ `git verify-commit {{commit SHA hash}} --verbose` -- Check git commits for a GPG signature and give RAW details: +- Check commits for a GPG signature and give RAW details: `git verify-commit {{commit SHA hash}} --raw` From 5ce4f6f70d891e681467972da6b224ddc49109d7 Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Wed, 12 May 2021 00:17:56 +0100 Subject: [PATCH 05/16] Update pages/common/git-verify-commit.md Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> --- pages/common/git-verify-commit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index d94986af135fa8..9c70fc724e609f 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -4,7 +4,7 @@ > If GPG verification isn't present, nothing will be returned, even if extra options are chosen. > More information: . -- Check git commits for a GPG signature: +- Check commits for a GPG signature: `git verify-commit {{commit SHA hash}}` From fd71a3735c2f22d2c2ebc7793c9bdc5a132caa1d Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Wed, 12 May 2021 00:18:19 +0100 Subject: [PATCH 06/16] Update pages/common/git-verify-commit.md Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> --- pages/common/git-verify-commit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index 9c70fc724e609f..29c150b156331a 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -8,7 +8,7 @@ `git verify-commit {{commit SHA hash}}` -- Check git commits for a GPG signature and show details of specified commit: +- Check commits for a GPG signature and show details of specified commit: `git verify-commit {{commit SHA hash}} --verbose` From 743d7db02b40d6aa505103eab990597ab1568c34 Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Wed, 12 May 2021 01:40:36 +0200 Subject: [PATCH 07/16] Changed commitSHAhash to commit_SHA --- pages/common/git-verify-commit.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index 29c150b156331a..f560aae5e86b08 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -6,12 +6,12 @@ - Check commits for a GPG signature: -`git verify-commit {{commit SHA hash}}` +`git verify-commit {{commit_SHA}}` - Check commits for a GPG signature and show details of specified commit: -`git verify-commit {{commit SHA hash}} --verbose` +`git verify-commit {{commit_SHA}} --verbose` - Check commits for a GPG signature and give RAW details: -`git verify-commit {{commit SHA hash}} --raw` +`git verify-commit {{commit_SHA}} --raw` From dd16479202fb0c5eca8b942668090fba9883010c Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Wed, 12 May 2021 11:56:20 +0100 Subject: [PATCH 08/16] Update pages/common/git-verify-commit.md Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> --- pages/common/git-verify-commit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index f560aae5e86b08..37f7bd2dd37bfa 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -12,6 +12,6 @@ `git verify-commit {{commit_SHA}} --verbose` -- Check commits for a GPG signature and give RAW details: +- Check commits for a GPG signature and print raw details: `git verify-commit {{commit_SHA}} --raw` From b5d336d1c784a75a0286063db0df694914200386 Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Wed, 12 May 2021 11:56:27 +0100 Subject: [PATCH 09/16] Update pages/common/git-verify-commit.md Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> --- pages/common/git-verify-commit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index 37f7bd2dd37bfa..5d9e828ba5bb2d 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -8,7 +8,7 @@ `git verify-commit {{commit_SHA}}` -- Check commits for a GPG signature and show details of specified commit: +- Check commits for a GPG signature and show details of each commit: `git verify-commit {{commit_SHA}} --verbose` From 19e43f092fffd341fa7df0fba101d52d9a3020ca Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Wed, 12 May 2021 11:56:34 +0100 Subject: [PATCH 10/16] Update pages/common/git-verify-commit.md Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> --- pages/common/git-verify-commit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index 5d9e828ba5bb2d..67f5c8782ae730 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -6,7 +6,7 @@ - Check commits for a GPG signature: -`git verify-commit {{commit_SHA}}` +`git verify-commit {{commit_SHA1}} {{commit_SHA2}}` - Check commits for a GPG signature and show details of each commit: From 9ae182a3bdc5319fc59e52b162130e5ae7d7ee31 Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Wed, 12 May 2021 12:57:46 +0200 Subject: [PATCH 11/16] Changed SHA1 and SHA2 to just SHA since -1 is a type of SHA --- pages/common/git-verify-commit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index 67f5c8782ae730..69ae4f3f31f354 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -6,7 +6,7 @@ - Check commits for a GPG signature: -`git verify-commit {{commit_SHA1}} {{commit_SHA2}}` +`git verify-commit {{commit_SHA}} {{commit_SHA}}` - Check commits for a GPG signature and show details of each commit: From 762bdb18fc5757afec58517fb1080320cdd8352e Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Wed, 12 May 2021 12:58:59 +0200 Subject: [PATCH 12/16] Changed SHA to just using hash --- pages/common/git-verify-commit.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index 69ae4f3f31f354..2a61d6ef68511a 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -6,12 +6,12 @@ - Check commits for a GPG signature: -`git verify-commit {{commit_SHA}} {{commit_SHA}}` +`git verify-commit {{commit_hash}} {{commit_hash}}` - Check commits for a GPG signature and show details of each commit: -`git verify-commit {{commit_SHA}} --verbose` +`git verify-commit {{commit_hash}} --verbose` - Check commits for a GPG signature and print raw details: -`git verify-commit {{commit_SHA}} --raw` +`git verify-commit {{commit_hash}} --raw` From cd3ff68fcab0c6c40d3b2f317bce11e6a40ef624 Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Wed, 12 May 2021 13:31:57 +0100 Subject: [PATCH 13/16] Update pages/common/git-verify-commit.md Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> --- pages/common/git-verify-commit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index 2a61d6ef68511a..b60997c6c1173b 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -1,7 +1,7 @@ # git verify-commit > Check for GPG verification of commits. -> If GPG verification isn't present, nothing will be returned, even if extra options are chosen. +> If no commits are verified, nothing will be printed, regardless of options specified. > More information: . - Check commits for a GPG signature: From 52a31ad6edd8b4ceb37d3b4f9ce5dc2b440c56a7 Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Fri, 14 May 2021 00:50:02 +0200 Subject: [PATCH 14/16] @bl-ue , take a look --- pages/common/git-verify-commit.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index b60997c6c1173b..69c6cc1ec1cc92 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -6,12 +6,12 @@ - Check commits for a GPG signature: -`git verify-commit {{commit_hash}} {{commit_hash}}` +`git verify-commit {{commit_hash}} {{optional_commit_hash(s')}}` - Check commits for a GPG signature and show details of each commit: -`git verify-commit {{commit_hash}} --verbose` +`git verify-commit {{commit_hash}} {{optional_commit_hash(s')}} --verbose` - Check commits for a GPG signature and print raw details: -`git verify-commit {{commit_hash}} --raw` +`git verify-commit {{commit_hash}} {{optional_commit_hash(s')}} --raw` From 00589d744879265bd14661fe068b311e7e038959 Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Fri, 14 May 2021 12:11:15 +0100 Subject: [PATCH 15/16] Update pages/common/git-verify-commit.md Co-authored-by: Starbeamrainbowlabs --- pages/common/git-verify-commit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index 69c6cc1ec1cc92..67c53eea312146 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -12,6 +12,6 @@ `git verify-commit {{commit_hash}} {{optional_commit_hash(s')}} --verbose` -- Check commits for a GPG signature and print raw details: +- Check commits for a GPG signature and print the raw details: `git verify-commit {{commit_hash}} {{optional_commit_hash(s')}} --raw` From bf92cd4f22d438492d87198c418410423d68c04b Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Sat, 15 May 2021 00:06:15 +0200 Subject: [PATCH 16/16] Changed syntax of how hashes are --- pages/common/git-verify-commit.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md index 67c53eea312146..eabc8517fab810 100644 --- a/pages/common/git-verify-commit.md +++ b/pages/common/git-verify-commit.md @@ -6,12 +6,12 @@ - Check commits for a GPG signature: -`git verify-commit {{commit_hash}} {{optional_commit_hash(s')}}` +`git verify-commit {{commit_hash1 optional_commit_hash2 ...}}` - Check commits for a GPG signature and show details of each commit: -`git verify-commit {{commit_hash}} {{optional_commit_hash(s')}} --verbose` +`git verify-commit {{commit_hash1 optional_commit_hash2 ...}} --verbose` - Check commits for a GPG signature and print the raw details: -`git verify-commit {{commit_hash}} {{optional_commit_hash(s')}} --raw` +`git verify-commit {{commit_hash1 optional_commit_hash2 ...}} --raw`