clone the project as in README with https or ssh

This commit is contained in:
nyxnor 2021-09-25 15:13:13 +02:00
parent 99139ce2d1
commit e6272cd34f

View file

@ -110,10 +110,10 @@ First, install `zip` and `unzip`. Example on Debian/Ubuntu systems:
sudo apt-get install -y zip unzip 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 ```shell
curl -sS "https://get.sdkman.io" | ${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). 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 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 ```shell
GIT_TAG="1.5.0-beta1" 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 git clone --recursive --branch "${GIT_TAG}" git@github.com:sparrowwallet/sparrow.git
``` ```