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`
This commit is contained in:
Plamen Totev
2021-03-01 10:02:06 +02:00
committed by GitHub
parent 999bc2e4b0
commit a5b330e181

View File

@@ -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