From 12ee58d7e65aa11dee9939292d41303a94255a6c Mon Sep 17 00:00:00 2001 From: Lucas Mathews Date: Sat, 13 Dec 2025 14:00:01 +0100 Subject: [PATCH] Update guide --- Guides/create-shh-keys.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Guides/create-shh-keys.md b/Guides/create-shh-keys.md index 7f1046e..464c84f 100644 --- a/Guides/create-shh-keys.md +++ b/Guides/create-shh-keys.md @@ -8,3 +8,13 @@ editor: markdown dateCreated: 2025-05-04T11:38:34.846Z --- # Creating SSH Key + Ideally the following steps are completed on the device and user which you want to allow the connection from, so it will be saved in their `~/.ssh` folder. + +Run the following commands: +```bash +cd ~/.ssh +ssh-keygen -t ed25519 -C "your_email@example.com" +``` + +# Add Public key to Gitea +`cat` the contents of the public key and add it into Gitea under **Settings** > **SSH / GPG Keys** > **Add key**.