src/libuv/MAINTAINERS.md

Project Maintainers

libuv is currently managed by the following individuals:

Storing a maintainer key in Git

It's quite handy to store a maintainer's signature as a git blob, and have that object tagged and signed with such key.

Export your public key:

$ gpg --armor --export saghul@gmail.com > saghul.asc

Store it as a blob on the repo:

$ git hash-object -w saghul.asc

The previous command returns a hash, copy it. For the sake of this explanation, we'll assume it's 'abcd1234'. Storing the blob in git is not enough, it could be garbage collected since nothing references it, so we'll create a tag for it:

$ git tag -s pubkey-saghul abcd1234

Commit the changes and push:

$ git push origin pubkey-saghul


Try the httpuv package in your browser

Any scripts or data that you put into this service are public.

httpuv documentation built on Oct. 24, 2023, 1:06 a.m.