Index: clang/www/get_started.html
===================================================================
--- clang/www/get_started.html
+++ clang/www/get_started.html
@@ -51,6 +51,11 @@
- Change directory to where you want the llvm directory placed.
- git clone https://github.com/llvm/llvm-project.git
+ - The above command is very slow. It can be made faster by creating a shallow clone. Shallow clone saves storage and speeds up the checkout time. This is done by using the command:
+
+ - git clone --depth=1 https://github.com/llvm/llvm-project.git (using this only the latest version of llvm can be built)
+
+
Build LLVM and Clang: