fixed ssh

This commit is contained in:
Emile Clark-Boman 2025-02-21 18:48:51 +10:00
parent 64d5097f1a
commit d178606f7d
9 changed files with 380 additions and 9 deletions

10
gitkraken_issue_solution Normal file
View file

@ -0,0 +1,10 @@
If gitkraken won't work make sure:
The ssh-agent is running and "$SSH_AUTH_SOCK" equals "$XDG_RUNTIME_DIR/ssh-agent"
(this is the known ssh-agent issue I've already solved).
Next make sure whatever you're cloning/etc from is in your ~/.ssh/known_hosts file
(if using ssh). Gitkraken may fail to do this automatically. ie for gitlab run:
```sh
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
```