From a5b330e181d430e47cb7f78a8333124bc2902d75 Mon Sep 17 00:00:00 2001 From: Plamen Totev Date: Mon, 1 Mar 2021 10:02:06 +0200 Subject: [PATCH] Fix Clone on Windows instructions (#1618) The suggested command git clone -c core.longPaths true https://github.com/spring-cloud/spring-cloud-contract.git fails because Git recognizes `true` as the repo to be cloned. Add equal sign (`=`) to fix this issue. This way Git will properly recognize `true` as the value for `core.longPaths` --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index c236be76fc..3dae46493f 100644 --- a/README.adoc +++ b/README.adoc @@ -237,7 +237,7 @@ git clone https://github.com/spring-cloud/spring-cloud-contract.git [source,bash] ---- -git clone -c core.longPaths true https://github.com/spring-cloud/spring-cloud-contract.git +git clone -c core.longPaths=true https://github.com/spring-cloud/spring-cloud-contract.git ---- IMPORTANT: You need to have all the necessary Groovy plugins