1e66f31c5Sopenharmony_ci# Project Maintainers
2e66f31c5Sopenharmony_ci
3e66f31c5Sopenharmony_cilibuv is currently managed by the following individuals:
4e66f31c5Sopenharmony_ci
5e66f31c5Sopenharmony_ci* **Ben Noordhuis** ([@bnoordhuis](https://github.com/bnoordhuis))
6e66f31c5Sopenharmony_ci  - GPG key: D77B 1E34 243F BAF0 5F8E  9CC3 4F55 C8C8 46AB 89B9 (pubkey-bnoordhuis)
7e66f31c5Sopenharmony_ci* **Jameson Nash** ([@vtjnash](https://github.com/vtjnash))
8e66f31c5Sopenharmony_ci  - GPG key: AEAD 0A4B 6867 6775 1A0E  4AEF 34A2 5FB1 2824 6514 (pubkey-vtjnash)
9e66f31c5Sopenharmony_ci  - GPG key: CFBB 9CA9 A5BE AFD7 0E2B  3C5A 79A6 7C55 A367 9C8B (pubkey2022-vtjnash)
10e66f31c5Sopenharmony_ci* **Jiawen Geng** ([@gengjiawen](https://github.com/gengjiawen))
11e66f31c5Sopenharmony_ci* **Kaoru Takanashi** ([@erw7](https://github.com/erw7))
12e66f31c5Sopenharmony_ci  - GPG Key: 5804 F999 8A92 2AFB A398  47A0 7183 5090 6134 887F (pubkey-erw7)
13e66f31c5Sopenharmony_ci* **Richard Lau** ([@richardlau](https://github.com/richardlau))
14e66f31c5Sopenharmony_ci  - GPG key: C82F A3AE 1CBE DC6B E46B  9360 C43C EC45 C17A B93C (pubkey-richardlau)
15e66f31c5Sopenharmony_ci* **Santiago Gimeno** ([@santigimeno](https://github.com/santigimeno))
16e66f31c5Sopenharmony_ci  - GPG key: 612F 0EAD 9401 6223 79DF  4402 F28C 3C8D A33C 03BE (pubkey-santigimeno)
17e66f31c5Sopenharmony_ci* **Saúl Ibarra Corretgé** ([@saghul](https://github.com/saghul))
18e66f31c5Sopenharmony_ci  - GPG key: FDF5 1936 4458 319F A823  3DC9 410E 5553 AE9B C059 (pubkey-saghul)
19e66f31c5Sopenharmony_ci* **Trevor Norris** ([@trevnorris](https://github.com/trevnorris))
20e66f31c5Sopenharmony_ci  - GPG key: AEFC 279A 0C93 0676 7E58  29A1 251C A676 820D C7F3 (pubkey-trevnorris)
21e66f31c5Sopenharmony_ci
22e66f31c5Sopenharmony_ci## Project Maintainers emeriti
23e66f31c5Sopenharmony_ci
24e66f31c5Sopenharmony_ci* **Anna Henningsen** ([@addaleax](https://github.com/addaleax))
25e66f31c5Sopenharmony_ci* **Bartosz Sosnowski** ([@bzoz](https://github.com/bzoz))
26e66f31c5Sopenharmony_ci* **Bert Belder** ([@piscisaureus](https://github.com/piscisaureus))
27e66f31c5Sopenharmony_ci* **Colin Ihrig** ([@cjihrig](https://github.com/cjihrig))
28e66f31c5Sopenharmony_ci  - GPG key: 94AE 3667 5C46 4D64 BAFA  68DD 7434 390B DBE9 B9C5 (pubkey-cjihrig)
29e66f31c5Sopenharmony_ci  - GPG key: 5735 3E0D BDAA A7E8 39B6  6A1A FF47 D5E4 AD8B 4FDC (pubkey-cjihrig-kb)
30e66f31c5Sopenharmony_ci* **Fedor Indutny** ([@indutny](https://github.com/indutny))
31e66f31c5Sopenharmony_ci  - GPG key: AF2E EA41 EC34 47BF DD86  FED9 D706 3CCE 19B7 E890 (pubkey-indutny)
32e66f31c5Sopenharmony_ci* **Imran Iqbal** ([@imran-iq](https://github.com/imran-iq))
33e66f31c5Sopenharmony_ci* **John Barboza** ([@jbarz](https://github.com/jbarz))
34e66f31c5Sopenharmony_ci
35e66f31c5Sopenharmony_ci## Storing a maintainer key in Git
36e66f31c5Sopenharmony_ci
37e66f31c5Sopenharmony_ciIt's quite handy to store a maintainer's signature as a git blob, and have
38e66f31c5Sopenharmony_cithat object tagged and signed with such key.
39e66f31c5Sopenharmony_ci
40e66f31c5Sopenharmony_ciExport your public key:
41e66f31c5Sopenharmony_ci
42e66f31c5Sopenharmony_ci    $ gpg --armor --export saghul@gmail.com > saghul.asc
43e66f31c5Sopenharmony_ci
44e66f31c5Sopenharmony_ciStore it as a blob on the repo:
45e66f31c5Sopenharmony_ci
46e66f31c5Sopenharmony_ci    $ git hash-object -w saghul.asc
47e66f31c5Sopenharmony_ci
48e66f31c5Sopenharmony_ciThe previous command returns a hash, copy it. For the sake of this explanation,
49e66f31c5Sopenharmony_ciwe'll assume it's 'abcd1234'. Storing the blob in git is not enough, it could
50e66f31c5Sopenharmony_cibe garbage collected since nothing references it, so we'll create a tag for it:
51e66f31c5Sopenharmony_ci
52e66f31c5Sopenharmony_ci    $ git tag -s pubkey-saghul abcd1234
53e66f31c5Sopenharmony_ci
54e66f31c5Sopenharmony_ciCommit the changes and push:
55e66f31c5Sopenharmony_ci
56e66f31c5Sopenharmony_ci    $ git push origin pubkey-saghul
57