From 5798025e9728a76ca751ba3ac0c114f9f421ee3c Mon Sep 17 00:00:00 2001 From: Prashant Iyer Date: Tue, 11 Jun 2024 16:42:33 -0500 Subject: [PATCH 1/2] added instructions on fixing SSH error while using git commands --- docs/community/troubleshooting.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/community/troubleshooting.md b/docs/community/troubleshooting.md index 7c30b369..a9b6c635 100644 --- a/docs/community/troubleshooting.md +++ b/docs/community/troubleshooting.md @@ -96,6 +96,15 @@ If you have any trouble, feel free to raise an Issue and we can provide you with -- This will let you run the example using the latest source code! +9. **Git permissed denied error** + + -- If you are using SSH to clone the repository and you get an error that looks similar to `git@github.com: Permission denied (publickey)`, then you might not have configured your SSH key correctly. + + -- If you don't already have one, you will need to create a new SSH key on your local machine. For instructions on how to do this, check out this page: https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent. + + -- You then need to add the SSH key to your GitHub account. For instructions on how to do this, check out this page: https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account. + + # More information about the project - [see main repository](https://www.github.com/llmware-ai/llmware.git) From aa6a53094985e71c6b9398b17467613d5dceee81 Mon Sep 17 00:00:00 2001 From: Prashant Iyer Date: Tue, 11 Jun 2024 19:18:17 -0500 Subject: [PATCH 2/2] fixed typo --- docs/community/troubleshooting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/community/troubleshooting.md b/docs/community/troubleshooting.md index a9b6c635..6fafc95b 100644 --- a/docs/community/troubleshooting.md +++ b/docs/community/troubleshooting.md @@ -96,7 +96,7 @@ If you have any trouble, feel free to raise an Issue and we can provide you with -- This will let you run the example using the latest source code! -9. **Git permissed denied error** +9. **Git permission denied error** -- If you are using SSH to clone the repository and you get an error that looks similar to `git@github.com: Permission denied (publickey)`, then you might not have configured your SSH key correctly.