From d8f858f785f288c9831250010cec94b07e3708f3 Mon Sep 17 00:00:00 2001 From: Igor Barinov Date: Mon, 20 Jul 2015 23:29:34 -0700 Subject: [PATCH] git clone ssh to https change You can only git clone using ssh if you have ssh keypair and pub key uploaded to github. Otherwise, you will get "Permission denied (publickey)." it's recommended to use https e.g. git clone https://github.com/bitpay/bitcoind.js.git --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0e2ae36d..1b275d8e 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ A Node.js module that adds a native interface to Bitcoin Core for querying infor ## Install ```bash -git clone git@github.com:bitpay/bitcoind.js.git +git clone https://github.com/bitpay/bitcoind.js.git cd bitcoind.js npm install ```