From 64c24628a03dfa95e74385a1de5bdd09da5f34a2 Mon Sep 17 00:00:00 2001 From: Guido Fioravantti Date: Tue, 28 Feb 2017 12:16:14 +0100 Subject: [PATCH] Stop using git:// protocol ## Context `https://` protocol [is prefered](https://help.github.com/articles/which-remote-url-should-i-use/#cloning-with-https-urls-recommended), plus using `git://` is messier in terms of permissions. Please consider changing your guide. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c5e6636..221ad12 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Steps to deploy a new Data Services API version : - install data services geocoder extension ``` - git clone git@github.com:CartoDB/data-services.git + git clone https://github.com/CartoDB/data-services.git cd data-services/geocoder/extension sudo make install ``` @@ -34,7 +34,7 @@ Steps to deploy a new Data Services API version : - install observatory extension ``` - git clone git@github.com:CartoDB/observatory-extension.git + git clone https://github.com/CartoDB/observatory-extension.git cd observatory sudo make install ```