Skip to content

Commit d13fd0e

Browse files
authored
Update prepare-a-local-relay-chain.md
1 parent 2b6797b commit d13fd0e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/md/en/docs/tutorials/build-a-parachain/prepare-a-local-relay-chain.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ Therefore, this tutorial uses code from the Polkadot repository to prepare the l
5656

5757
1. Clone the most recent release branch of the Polkadot repository to prepare a stable working environment.
5858

59-
Release branches tend to be the most reliable and use the naming convention `release-v<n..n.n>`.
60-
For example, the release branch used in this tutorial is `release-v1.0.0`.
61-
Newer releases are likely to be available and, in most cases, you can substitute a more recent release branch instead of using the `release-v1.0.0` branch a long as you use the same branch for every module.
62-
You can find information about each release on the [Releases](https://github.com/paritytech/polkadot/releases) tab in GitHub.
59+
Release branches tend to be the most reliable and mostly use the naming convention `release-v<n.n.n>`. You can either clone the release branch directly by specifying its name or using its associated tag, named following SemVer scheme `v<n.n.n>`.
60+
For example, the release branch tag used in this tutorial is `v1.0.0`.
61+
Newer releases are likely to be available, and, in most cases, you can substitute a more recent release branch instead of using the `v1.0.0` branch a long as you use the same branch for every module.
62+
You can find information about newer releases on the [Releases](https://github.com/paritytech/polkadot-sdk/releases) tab in GitHub.
6363

6464
```bash
65-
git clone --branch release-v1.0.0 https://github.com/paritytech/polkadot-sdk.git
65+
git clone --branch v1.0.0 https://github.com/paritytech/polkadot.git
6666
```
6767

6868
2. Change to the root of the `polkadot` directory by running the following command:

0 commit comments

Comments
 (0)