From 31ef6875e35c3078a3b69d65984e13f3925a644a Mon Sep 17 00:00:00 2001 From: Helder Oliveira Date: Mon, 9 Oct 2023 16:17:43 +0100 Subject: [PATCH] =?UTF-8?q?Revert=20"refactor:=20=F0=9F=92=A1=20git=20clon?= =?UTF-8?q?e=20by=20tag=20name"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 010578ec9f15cc2513a313e85b0d54b538f7d8df. --- guides/partials/_git-clone-options.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guides/partials/_git-clone-options.mdx b/guides/partials/_git-clone-options.mdx index 8f1efc4e5..2cc115a4f 100644 --- a/guides/partials/_git-clone-options.mdx +++ b/guides/partials/_git-clone-options.mdx @@ -3,19 +3,19 @@ You have several ways of doing this: - Clone via HTTPS - Clone via SSH - Download via Github CLI -- Download the [zip package](https://github.com/fleek-network/lightning/archive/refs/tags/fn-alpha-0.zip) from the repository +- Download the [zip package](https://github.com/fleek-network/lightning/archive/refs/heads/main.zip) from the repository We recommend HTTPS because it is the easiest to set up in the wild, and by users who are new to all this. Although, we strongly recommend using an SSH connection when interacting with GitHub. If you are to this and are interested read more about it [here](https://docs.github.com/en/authentication/connecting-to-github-with-ssh). ```sh -git clone https://github.com/fleek-network/lightning.git --branch fn-alpha-0 --single-branch +git clone -b testnet-alpha-0 https://github.com/fleek-network/lightning.git ``` At time of writing, we are checking the branch name `testnet-alpha-0` that corresponds to the testnet phase. Here's an example of what it'd look like when sticking to the recommended path location: ```sh -git clone https://github.com/fleek-network/lightning.git --branch fn-alpha-0 --single-branch ~/fleek-network/lightning +git clone -b testnet-alpha-0 https://github.com/fleek-network/lightning.git ~/fleek-network/lightning ``` :::