From f8a327a18db13866bbcafec4eacd92e149bf92b0 Mon Sep 17 00:00:00 2001 From: Hunter Date: Wed, 26 Jul 2017 10:40:01 -0400 Subject: [PATCH] Readme: Recursive clone instead of submodules init The --[recursive](https://git-scm.com/docs/git-clone#git-clone---recurse-submodulesltpathspec) option when cloning is the equivalent of doing a `git submodule update --init --recursive`. --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 30c31f23..320e8f28 100644 --- a/README.md +++ b/README.md @@ -29,9 +29,8 @@ See the documentation [Table of Contents](docs/readme.md) for an overview of the For the impatient: ```sh -git clone https://github.com/squirrel/squirrel.windows +git clone --recursive https://github.com/squirrel/squirrel.windows cd squirrel.windows -git submodule update --init --recursive ## THIS IS THE PART YOU PROBABLY FORGOT .\.NuGet\NuGet.exe restore msbuild /p:Configuration=Release ```