Skip to content

Commit

Permalink
Revert "refactor: 💡 git clone by tag name"
Browse files Browse the repository at this point in the history
This reverts commit 010578e.
  • Loading branch information
heldrida committed Oct 9, 2023
1 parent fcf8753 commit 31ef687
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions guides/partials/_git-clone-options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 <DIRECTORY-NAME>
git clone -b testnet-alpha-0 https://github.com/fleek-network/lightning.git <DIRECTORY-NAME>
```

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
```
:::

0 comments on commit 31ef687

Please sign in to comment.