-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating README.md with instructions to clone all submodules. (#5)
- Loading branch information
1 parent
afd8bae
commit 1140a9d
Showing
1 changed file
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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). |