Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace github with GitHub in CONTRIBUTING.md #7558

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ pbcopy < ~/.ssh/id_ed25519.pub

##### **ii. Setting up SSH Keys for Windows**

1. You have to set up SSH keys in order to contribute to github remotely. First check if you have any keys set up already. Open Git Bash and run:
1. You have to set up SSH keys in order to contribute to GitHub remotely. First check if you have any keys set up already. Open Git Bash and run:

```bash
ls -al ~/.ssh
Expand All @@ -769,7 +769,7 @@ If the folder ~/.ssh does not exist, create it using
mkdir ~/.ssh
```

2. Then enter the text below into your terminal using your github account email address.
2. Then enter the text below into your terminal using your GitHub account email address.

```bash
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
Expand All @@ -787,13 +787,13 @@ eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
```

5. Finally copy the ssh key to add it to your github account by entering the following command. This copies the contents of the id_ed25519.pub file to your clipboard __Don't copy anything else until after you finish the last step, or else you will have to repeat this step.__
5. Finally copy the ssh key to add it to your GitHub account by entering the following command. This copies the contents of the id_ed25519.pub file to your clipboard __Don't copy anything else until after you finish the last step, or else you will have to repeat this step.__

```bash
clip < ~/.ssh/id_ed25519.pub
```

6. Go to your github accounts ssh key settings, and click on the button that says _New SSH key_. In the "Title" field, add a descriptive label for the new key. Paste the key into the form that pops up. Click Add SSH Key
6. Go to your GitHub account's ssh key settings, and click on the button that says _New SSH key_. In the "Title" field, add a descriptive label for the new key. Paste the key into the form that pops up. Click Add SSH Key

<sub>[Back to Table of Contents](#table-of-contents)</sub>
***
Expand Down