2023-09-06 19:24:48 -04:00
<!--
Title: Privacy guides docs
Description: Learn how to contribute, get help and sign privacy guides pull requests.
Author: Sun Knudsen < https: / / github . com / sunknudsen >
Contributors: Sun Knudsen < https: / / github . com / sunknudsen >
Reviewers:
Publication date: 2020-09-10T14:14:21.000Z
Listed: false
Pinned:
-->
2020-09-10 10:14:21 -04:00
# Privacy guides docs
## How to contribute
2022-01-17 09:28:20 -05:00
Thanks for contributing. 🙌
2020-09-10 10:14:21 -04:00
2022-01-17 09:28:20 -05:00
**Like project?** Please star [repo ](https://github.com/sunknudsen/privacy-guides ).
2020-09-10 10:14:21 -04:00
2022-01-17 09:28:20 -05:00
**Found a bug?** Please submit [issue ](https://github.com/sunknudsen/privacy-guides/issues ) or [signed ](#how-to-sign-pull-requests ) [pull request ](https://github.com/sunknudsen/privacy-guides/pulls ).
2020-09-10 10:14:21 -04:00
2022-01-17 09:28:20 -05:00
**Found a security vulnerability?** Please disclose vulnerability privately using the PGP public key and email found on [https://sunknudsen.com/contact ](https://sunknudsen.com/contact ).
2021-03-08 07:51:25 -05:00
2022-01-17 09:28:20 -05:00
**Wish to support the project?** Please visit [https://sunknudsen.com/donate ](https://sunknudsen.com/donate ).
2020-09-10 10:14:21 -04:00
## How to get help
2022-01-17 09:28:20 -05:00
Check out [discussions ](https://github.com/sunknudsen/privacy-guides/discussions ).
2020-09-10 10:14:21 -04:00
## How to sign pull requests
### Step 1: add PGP public key to GitHub account
2021-01-31 18:27:57 -05:00
Go to https://github.com/settings/keys, click “New GPG key”, paste your PGP public key and click “Add GPG key”.
2020-09-10 10:14:21 -04:00
### Step 2: enable Git [signing](https://git-scm.com/book/en/v2/Git-Tools-Signing-Your-Work)
2022-02-16 16:07:46 -05:00
> Heads-up: replace `0x8C9CA674C47CA060` with your PGP public key ID.
2020-09-10 10:14:21 -04:00
```shell
git config --global commit.gpgsign true
git config --global gpg.program $(which gpg)
2021-12-29 11:39:12 -05:00
git config --global user.signingkey 0x8C9CA674C47CA060
2020-09-10 10:14:21 -04:00
```
### Step 3: submit pull request
👍