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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user