mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-02-23 06:45:21 +01:00
Add --depth 100 restriction when cloning bitcoin-s repo to speed up clone time (#2674)
This commit is contained in:
parent
e4b0f1ff42
commit
89745c201a
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue