Skip to content

Commit 094d9fd

Browse files
committed
Merge bitcoin/bitcoin#24788: doc: Add gpg key import instructions for Windows
1075820 doc: Add gpg key import instructions for Windows (Dave Scotese) Pull request description: This is a single commit to replace the three commits from #23916 I propose this change so that Windows users can more easily import signers' keys. ACKs for top commit: sipsorcery: tACK 1075820. Tree-SHA512: 7d4ec77ce10f751748c49f1453fa8baf0976b15af4f87dc27f4e2715ad73fbd7dc1f07fcf3e660d63a6b9eb895a5e4105774613d39a2328f73b92d9e6cff4ebd
2 parents dbdc83a + 1075820 commit 094d9fd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

contrib/builder-keys/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,15 @@ gpg --refresh-keys
1919
To fetch keys of builders and active developers, feed the list of fingerprints
2020
of the primary keys into gpg:
2121

22+
On \*NIX:
2223
```sh
2324
while read fingerprint keyholder_name; do gpg --keyserver hkps://keys.openpgp.org --recv-keys ${fingerprint}; done < ./keys.txt
2425
```
2526

27+
On Windows (requires Gpg4win >= 4.0.0):
28+
```
29+
FOR /F "tokens=1" %i IN (keys.txt) DO gpg --keyserver hkps://keys.openpgp.org --recv-keys %i
30+
```
31+
2632
Add your key to the list if you provided Guix attestations for two major or
2733
minor releases of Bitcoin Core.

0 commit comments

Comments
 (0)