Update README with repository checkout guidance

- Changed repository to clone based on updated organization
- Determine latest release from github api call.  An alternative form being `latestrelease=$(git describe --exact-match --abbrev=0)` to yield the most recent tag name.
This commit is contained in:
Lucas Moten 2020-10-12 22:51:39 +00:00 committed by GitHub
parent 55646b5732
commit ed3811bf2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,9 +33,10 @@ You should see mempool starting up, which takes over an hour (needs 8 blocks). W
## Checking out release tag
```bash
git clone https://github.com/mempool-space/mempool.space
cd mempool.space
git checkout v1.0.0 # put latest release tag here
git clone https://github.com/mempool/mempool
cd mempool
latestrelease=$(curl -s https://api.github.com/repos/mempool/mempool/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")')
git checkout $latestrelease
```
## Bitcoin Core (bitcoind)