From e6272cd34f2c58a1cc440fdec49b29d8173d3154 Mon Sep 17 00:00:00 2001 From: nyxnor Date: Sat, 25 Sep 2021 15:13:13 +0200 Subject: [PATCH] clone the project as in README with https or ssh --- docs/REPRODUCIBLE.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/REPRODUCIBLE.md b/docs/REPRODUCIBLE.md index 069c7507..59ecaa2d 100644 --- a/docs/REPRODUCIBLE.md +++ b/docs/REPRODUCIBLE.md @@ -110,10 +110,10 @@ First, install `zip` and `unzip`. Example on Debian/Ubuntu systems: sudo apt-get install -y zip unzip ``` -Installation on macOS, Linux, WSL, Cygwin, Solaris and FreeBSD (compatible with BASH and ZSH shells): +Installation on macOS, Linux, WSL, Cygwin, Solaris and FreeBSD (compatible with Bash and Zsh shells): ```shell curl -sS "https://get.sdkman.io" | ${SHELL##*/} -source "$HOME/.sdkman/bin/sdkman-init.sh" +. "$HOME/.sdkman/bin/sdkman-init.sh" ``` Installation on Windows with [git-scm](https://git-scm.com/download/win). @@ -130,9 +130,20 @@ To complete the build the package below are required. Installation on Debian/Ubu sudo apt install -y rpm fakeroot binutils git wget curl gnupg tar diffutils ``` -The project can cloned for a specific release tag as follows: +Set a specific release tag as follows: ```shell GIT_TAG="1.5.0-beta1" +``` + +Clone the repository: + +* without SSH credentials: +```shell +git clone --recursive --branch "${GIT_TAG}" https://github.com/sparrowwallet/sparrow.git +``` + +* with SSH credentials: +```shell git clone --recursive --branch "${GIT_TAG}" git@github.com:sparrowwallet/sparrow.git ```