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