Skip to content

Commit fc083c6

Browse files
authored
Update building-howto.md to include example on pulling down repo source for better user reference
The current readme instruction is confusing which causing user to pull down wrong commit source. Adding an example instruction into readme will helps better reference for user.
1 parent 46183dd commit fc083c6

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

docs/developer-guide/get-started/building-howto.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,16 @@ approach, as building the *entire toolchain* may take a lot of time. Adding the
2828
```bash
2929
# Clone the repository
3030
git clone <Microvisor git repo>
31+
# Example: git clone https://github.com/open-edge-platform/edge-microvisor-toolkit.git
32+
33+
# Enter repository directory
3134
cd <Microvisor repo>
3235

33-
# Checkout stable branch of Microvisor
34-
git checkout <latest stable>
36+
# Checkout stable tag of Microvisor
37+
git checkout <stable tag>
38+
# Example: git checkout 3.0.20250411
3539

36-
# Build the tools
40+
# Enter toolkit folder and build the tools
3741
cd ./toolkit
3842
sudo make toolchain REBUILD_TOOLS=y
3943
```

0 commit comments

Comments
 (0)