From 617c8daf3563a06ab1e88197d3bead057598ce34 Mon Sep 17 00:00:00 2001 From: Sriram Thiagarajan Date: Tue, 6 Feb 2018 21:55:23 +0530 Subject: [PATCH] use simple https to clone starters --- packages/gatsby-cli/src/init-starter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gatsby-cli/src/init-starter.js b/packages/gatsby-cli/src/init-starter.js index 8f1d7569b00c3..e8753fe613dce 100644 --- a/packages/gatsby-cli/src/init-starter.js +++ b/packages/gatsby-cli/src/init-starter.js @@ -82,7 +82,7 @@ const clone = async (hostInfo: any, rootPath: string) => { url = hostInfo.ssh({ noCommittish: true }) // Otherwise default to normal git syntax. } else { - url = hostInfo.https({ noCommittish: true }) + url = hostInfo.https({ noCommittish: true, noGitPlus: true }) } const branch = hostInfo.committish ? `-b ${hostInfo.committish}` : ``