-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ghcli ssh auth post description
- Loading branch information
1 parent
13f7456
commit ad9ecac
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
@@ -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. | ||
|