From 8e2b0b8ac5b060f78931abceb3cf5809e0795b50 Mon Sep 17 00:00:00 2001 From: keblek <68111648+keblek@users.noreply.github.com> Date: Sun, 31 Jan 2021 22:41:23 +0100 Subject: [PATCH] changed git clone to HTTPS By using SSH on a fresh OS install you have to establish the public key of GitHub and if you don't have it you have to a song and dance about it. With HTTPS it works every time. Unless of course this is a security measure, in which case ignore this post. --- node_client.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node_client.asciidoc b/node_client.asciidoc index 8ab9336..a4f1bc6 100644 --- a/node_client.asciidoc +++ b/node_client.asciidoc @@ -44,7 +44,7 @@ To make a local copy of the repository on your computer, run the git command as [git-clone-lnbook] ---- -$ git clone git@github.com:lnbook/lnbook.git +$ git clone https://github.com/lnbook/lnbook.git ---- You now have a complete copy of the book repository in a folder called +lnbook+. All subsequent examples will assume that you are running commands from that folder.