From d8da7beb52e14f1734bca1f769f6e47f845f2d7f Mon Sep 17 00:00:00 2001 From: Bizzle Wizzle Date: Sat, 26 Oct 2024 20:11:36 -0400 Subject: [PATCH] Initial commit --- ~/.ssh/config | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ~/.ssh/config diff --git a/~/.ssh/config b/~/.ssh/config new file mode 100644 index 0000000..fdfeee2 --- /dev/null +++ b/~/.ssh/config @@ -0,0 +1,14 @@ +# ~/.ssh/config entry for Gitea +Host gitea + HostName localhost + Port 222 + User git + IdentityFile ~/.ssh/id_ed25519 # Or whatever your SSH key is + PreferredAuthentications publickey + +Host localhost + HostName localhost + Port 222 + User git + IdentityFile ~/.ssh/id_ed25519 + PreferredAuthentications publickey \ No newline at end of file