Skip to content

Commit d529751

Browse files
fanquakePastaPastaPasta
authored andcommitted
Merge 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 bitcoin#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
1 parent 61bae78 commit d529751

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
@@ -18,9 +18,15 @@ gpg --refresh-keys
1818
To fetch keys of builders and active developers, feed the list of fingerprints
1919
of the primary keys into gpg:
2020

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

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

0 commit comments

Comments
 (0)