Skip to content

Commit

Permalink
Updating README.md with instructions to clone all submodules. (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhui-zheng authored Feb 28, 2020
1 parent afd8bae commit 1140a9d
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,30 @@ In this repository, we provide three demo projects:
FreeRTOS-Labs\Demo\FreeRTOS_Plus_POSIX_with_actor_Windows_Simulator\FreeRTOS_Plus_POSIX_with_actor.sln
```


## Cloning this repository
This repo uses [Git Submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules) to bring in dependent components.

Note: If you download the ZIP file provided by GitHub UI, you will not get the contents of the submodules. (The ZIP file is also not a valid git repository)

To clone using HTTPS:
```
git clone https://github.com/FreeRTOS/FreeRTOS-Labs.git
git clone https://github.com/FreeRTOS/FreeRTOS-Labs.git --recurse-submodules
```
Using SSH:
```
git clone [email protected]:FreeRTOS/FreeRTOS-Labs.git
git clone [email protected]:FreeRTOS/FreeRTOS-Labs.git --recurse-submodules
```

If you have downloaded the repo without using the `--recurse-submodules` argument, you need to run:
```
git submodule update --init --recursive
```


## For official FreeRTOS releases
https://github.com/FreeRTOS/FreeRTOS


## Getting help
If you have any questions or need assistance troubleshooting your FreeRTOS project, we have an active community that can help on the [FreeRTOS Community Support Forum](https://forums.freertos.org).

0 comments on commit 1140a9d

Please sign in to comment.