Add --depth 100 restriction when cloning bitcoin-s repo to speed up clone time (#2674)

This commit is contained in:
Chris Stewart 2021-02-17 10:51:25 -06:00 committed by GitHub
parent e4b0f1ff42
commit 89745c201a
2 changed files with 4 additions and 4 deletions

View file

@ -29,13 +29,13 @@ Simply follow the instructions in [this short blog](https://www.scala-lang.org/2
Now, it is time to clone the [Bitcoin-S repository](https://github.com/bitcoin-s/bitcoin-s/) by running
```bashrc
git clone --recursive git@github.com:bitcoin-s/bitcoin-s.git
git clone --depth 100 --recursive git@github.com:bitcoin-s/bitcoin-s.git
```
or alternatively, if you do not have ssh setup with github, you can run
```bashrc
git clone --recursive https://github.com/bitcoin-s/bitcoin-s.git
git clone --depth 100 --recursive https://github.com/bitcoin-s/bitcoin-s.git
```
Next, you will want to execute the commands

View file

@ -21,13 +21,13 @@ Simply follow the instructions in [this short blog](https://www.scala-lang.org/2
Now, it is time to clone the [Bitcoin-S repository](https://github.com/bitcoin-s/bitcoin-s/) by running
```bashrc
git clone --recursive git@github.com:bitcoin-s/bitcoin-s.git
git clone --depth 100 --recursive git@github.com:bitcoin-s/bitcoin-s.git
```
or alternatively, if you do not have ssh setup with github, you can run
```bashrc
git clone --recursive https://github.com/bitcoin-s/bitcoin-s.git
git clone --depth 100 --recursive https://github.com/bitcoin-s/bitcoin-s.git
```
Next, you will want to execute the commands