From d13fd0ee2c47ed6a688d435f250f20581a201da4 Mon Sep 17 00:00:00 2001 From: Abdulaziz Kamil Date: Sun, 10 Dec 2023 14:45:42 +0100 Subject: [PATCH] Update prepare-a-local-relay-chain.md --- .../build-a-parachain/prepare-a-local-relay-chain.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/content/md/en/docs/tutorials/build-a-parachain/prepare-a-local-relay-chain.md b/content/md/en/docs/tutorials/build-a-parachain/prepare-a-local-relay-chain.md index 2b1fdb6c2..2fd21008c 100644 --- a/content/md/en/docs/tutorials/build-a-parachain/prepare-a-local-relay-chain.md +++ b/content/md/en/docs/tutorials/build-a-parachain/prepare-a-local-relay-chain.md @@ -56,13 +56,13 @@ Therefore, this tutorial uses code from the Polkadot repository to prepare the l 1. Clone the most recent release branch of the Polkadot repository to prepare a stable working environment. - Release branches tend to be the most reliable and use the naming convention `release-v`. - For example, the release branch used in this tutorial is `release-v1.0.0`. - 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. - You can find information about each release on the [Releases](https://github.com/paritytech/polkadot/releases) tab in GitHub. + Release branches tend to be the most reliable and mostly use the naming convention `release-v`. You can either clone the release branch directly by specifying its name or using its associated tag, named following SemVer scheme `v`. + For example, the release branch tag used in this tutorial is `v1.0.0`. + 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. + You can find information about newer releases on the [Releases](https://github.com/paritytech/polkadot-sdk/releases) tab in GitHub. ```bash - git clone --branch release-v1.0.0 https://github.com/paritytech/polkadot-sdk.git + git clone --branch v1.0.0 https://github.com/paritytech/polkadot.git ``` 2. Change to the root of the `polkadot` directory by running the following command: