From 45b978b22142247dbeb5cc3bc54b5e31c65a9dd3 Mon Sep 17 00:00:00 2001 From: Brock Davis <42578556+brockneedscoffee@users.noreply.github.com> Date: Wed, 4 Nov 2020 10:50:52 -0500 Subject: [PATCH 1/2] Update adding-a-new-ssh-key-to-your-github-account.md The updated docs that use ed25519 to generate the key are merged. This needs to match those steps --- .../adding-a-new-ssh-key-to-your-github-account.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account.md b/content/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account.md index 6c1db79b1b4d..ae3cf2080550 100644 --- a/content/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account.md +++ b/content/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account.md @@ -24,7 +24,7 @@ After adding a new SSH key to your {% data variables.product.product_name %} acc If your SSH key file has a different name than the example code, modify the filename to match your current setup. When copying your key, don't add any newlines or whitespace. ```shell - $ pbcopy < ~/.ssh/id_rsa.pub + $ pbcopy < ~/.ssh/id_ed25519.pub # Copies the contents of the id_rsa.pub file to your clipboard ``` From 649368c16af1d0b8b1e80149513462f3f08de2ee Mon Sep 17 00:00:00 2001 From: Felicity Chapman Date: Mon, 23 Nov 2020 18:30:38 +0000 Subject: [PATCH 2/2] Update content/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account.md Co-authored-by: Shati Patel <42641846+shati-patel@users.noreply.github.com> --- .../adding-a-new-ssh-key-to-your-github-account.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account.md b/content/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account.md index ae3cf2080550..34c9e727d8e3 100644 --- a/content/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account.md +++ b/content/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account.md @@ -25,7 +25,7 @@ After adding a new SSH key to your {% data variables.product.product_name %} acc ```shell $ pbcopy < ~/.ssh/id_ed25519.pub - # Copies the contents of the id_rsa.pub file to your clipboard + # Copies the contents of the id_ed25519.pub file to your clipboard ``` {% tip %}