From 1c3ca3e81023527bef5a5ca0b971067cb646de8e Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Sun, 20 Aug 2023 15:13:24 -0700 Subject: [PATCH] update clone instructions (#29490) * both * Update README.md * Update README.md old-commit-hash: 5690386d8d731c9bebda536a5c71c890f6dfe98c --- tools/README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/README.md b/tools/README.md index 7e229d3eaa..fd03a5d77e 100644 --- a/tools/README.md +++ b/tools/README.md @@ -9,7 +9,10 @@ openpilot is developed and tested on **Ubuntu 20.04**, which is the primary deve First, clone openpilot: ``` bash cd ~ -git clone --filter=blob:none --recurse-submodules https://github.com/commaai/openpilot.git +git clone --recurse-submodules https://github.com/commaai/openpilot.git + +# or do a partial clone instead for a faster clone and smaller repo size +git clone --filter=blob:none --recurse-submodules --also-filter-submodules https://github.com/commaai/openpilot.git cd openpilot ```