From 0bd8288405514d68b422575ace474d88e45ae285 Mon Sep 17 00:00:00 2001 From: Mehdi Benadel <mehdi.benadel@inria.fr> Date: Fri, 18 Dec 2020 19:59:42 +0100 Subject: [PATCH] fix git clone documentation --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f9a033d..655ba31 100644 --- a/README.md +++ b/README.md @@ -51,11 +51,17 @@ and unzip which will add the necessary files. You will need to checkout SIBR Core. For this use the following commands: ```bash - git clone https://gitlab.inria.fr/sibr/sibr_core.git +## through HTTPS +git clone https://gitlab.inria.fr/sibr/sibr_core.git +## through SSH +git clone git@gitlab.inria.fr:sibr/sibr_core.git ``` Then clone the soft3d project ```bash - git clone https://gitlab.inria.fr/sibr/projects/soft3d.git +## through HTTPS +git clone https://gitlab.inria.fr/sibr/projects/soft3d.git +## through SSH +git clone git@gitlab.inria.fr:sibr/projects/soft3d.git ``` ### Configuration -- GitLab