From 8ab3e970b3a753ddce43ce392ab931a8c17a194b Mon Sep 17 00:00:00 2001 From: Plamen Totev Date: Mon, 29 Mar 2021 09:13:47 +0300 Subject: [PATCH] Fix Clone on Windows instructions (#1631) 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` --- docs/src/main/asciidoc/_building.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/_building.adoc b/docs/src/main/asciidoc/_building.adoc index 6a4eb1cc6c..169e115e65 100644 --- a/docs/src/main/asciidoc/_building.adoc +++ b/docs/src/main/asciidoc/_building.adoc @@ -30,7 +30,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