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`
This commit is contained in:
Plamen Totev
2021-03-29 09:13:47 +03:00
committed by GitHub
parent 5d0154e5db
commit 8ab3e970b3

View File

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