Skip to content

Commit 0a50ad6

Browse files
committed
fix: s/the/own
1 parent 82a0adc commit 0a50ad6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

doc/starlight/src/components/gitsetup.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ git submodule add https://github.com/RIOT-OS/RIOT.git
4040
When looking into our directory via `ls`, we can see that a new directory called `RIOT` has been created. This directory contains the RIOT source code. If you were to push your project to a git hosting service, the `RIOT` directory would not be included in the repository. Instead, the repository would contain a reference to the commit of the RIOT repository that you have added as a submodule. This way, the repository stays small and only contains the code that you have written and not the entire RIOT source code.
4141

4242
:::note
43-
Remember that you need to clone the repository with the `--recursive` option to get the submodule as well.
43+
Remember that you need to clone your own repository with the `--recursive` option to get the submodule as well.
4444

4545
```bash
4646
git clone --recursive https://git.example.com/your/repo.git
4747
```
4848

49-
Alternatively if you have already cloned the repository, you can run the following command to initialize and update the submodule:
49+
Alternatively if you have already cloned your own repository, you can run the following command to initialize and update the submodule:
5050

5151
```bash
5252
git submodule update --init --recursive

0 commit comments

Comments
 (0)