From 0f39d3b822a565a317786c2d634ff86bb048764c Mon Sep 17 00:00:00 2001
From: Nigel Gott <nigel@baserow.io>
Date: Tue, 6 Apr 2021 13:37:35 +0100
Subject: [PATCH] Update all git clone urls in docs to work without needing to
 register ssh keys with gitlab, instead using the https url anyone can clone
 the public repo without having to register with gitlab.

---
 docs/development/development-environment.md   | 2 +-
 docs/guides/installation/install-on-ubuntu.md | 2 +-
 docs/plugins/boilerplate.md                   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/development/development-environment.md b/docs/development/development-environment.md
index e4ec54e1a..aab65107e 100644
--- a/docs/development/development-environment.md
+++ b/docs/development/development-environment.md
@@ -48,7 +48,7 @@ Baserow's code to your computer.
 
 ```
 $ cd ~/baserow
-$ git clone git@gitlab.com:bramw/baserow.git
+$ git clone https://gitlab.com/bramw/baserow.git
 Cloning into 'baserow'...
 ...
 $ cd baserow
diff --git a/docs/guides/installation/install-on-ubuntu.md b/docs/guides/installation/install-on-ubuntu.md
index 8e8908661..78ed2f2db 100644
--- a/docs/guides/installation/install-on-ubuntu.md
+++ b/docs/guides/installation/install-on-ubuntu.md
@@ -81,7 +81,7 @@ $ sudo -i
 # Clone the baserow project
 $ mkdir /baserow
 $ cd /baserow
-$ git clone https://gitlab.com/bramw/baserow/ .
+$ git clone https://gitlab.com/bramw/baserow.git .
 ```
 
 The password used for the `baserow` user does not have to be the same as the one used
diff --git a/docs/plugins/boilerplate.md b/docs/plugins/boilerplate.md
index 49d8da0b4..e164d5055 100644
--- a/docs/plugins/boilerplate.md
+++ b/docs/plugins/boilerplate.md
@@ -15,7 +15,7 @@ python and pip.
 ```
 $ cd ~/baserow
 $ pip install cookiecutter
-$ git clone git@gitlab.com:bramw/baserow.git
+$ git clone https://gitlab.com/bramw/baserow.git
 Cloning into 'baserow'...
 ```