aboutsummaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2023-08-02 14:55:12 +0200
committerMax Audron <audron@cocaine.farm>2023-08-02 14:55:12 +0200
commita08a6b7c036fc7c18df48efe9c514d75918f093e (patch)
tree5fa7f7d4edee983bad41f320c50be7399ed78267 /README.org
parentadd error message if no projects found (diff)
document issue with ignored ssh config
Diffstat (limited to 'README.org')
-rw-r--r--README.org14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.org b/README.org
index 3d4bd10..4a18e14 100644
--- a/README.org
+++ b/README.org
@@ -45,3 +45,17 @@ token = "HgDAfJ9tfD5xUw2L6SUm"
# Directory to clone the repos into
directory = "/home/audron/repo/gitlab.com"
#+end_src
+
+* Known Problems
+** error during git operation invalid or unknown remote ssh hostkey
+libgit2, the git library this project uses, does not have support for ssh
+configuration via ~\~/.ssh/config~. Thus if you have a custom location for the
+~known_hosts~ file or disabled known hosts verification this configuration will
+not be respected.
+
+Execute a ssh-keyscan to a known hosts file for each of your configured forges:
+#+begin_src sh
+ssh-keyscan gitlab.com >> ~/.ssh/known_hosts
+#+end_src
+
+https://github.com/libgit2/libgit2/issues/4872