Skip to content

Commit

Permalink
Update ghcli ssh auth post description
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyscott25 committed Jan 13, 2024
1 parent 13f7456 commit ad9ecac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/posts/auth-github-cli-over-ssh/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
date: 2024-01-08T10:35:52+11:00
title: "Authenticating GitHub CLI over SSH"
description: "A quick tutorial on authenticating your GitHub CLI over SSH with an existing key"
title: "Authenticating Git and GitHub CLI over SSH"
description: "Configuring Git and GitHub CLI to authenticate over SSH is easy, more secure, and a great step for those wanting a deeper understanding of Git configuration and authentication."
tags:
[
"Linux",
Expand Down Expand Up @@ -62,7 +62,7 @@ gh auth logout
Generate an SSH key pair with `ssh-keygen`. Choose a long and secure passphrase that you will remember.

```bash
ssh-keygen -t ed25519 -C "[email protected]"
ssh-keygen -t ed25519 -C "[email protected]"
```

By default, it will create a `id_ed25519` private key file and `id_ed25519.pub` public key file in your `~/.ssh` directory.
Expand Down

0 comments on commit ad9ecac

Please sign in to comment.