From b277e35a504b95a6ab6feb9b1d7fc92b1c90a7d6 Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 24 Nov 2018 12:54:20 -0200 Subject: [PATCH] Fixing the comment about forcing git --- packages/@vue/cli/bin/vue.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@vue/cli/bin/vue.js b/packages/@vue/cli/bin/vue.js index ecb9e0730f..44723291b9 100755 --- a/packages/@vue/cli/bin/vue.js +++ b/packages/@vue/cli/bin/vue.js @@ -57,7 +57,7 @@ program .option('-b, --bare', 'Scaffold project without beginner instructions') .action((name, cmd) => { const options = cleanArgs(cmd) - // --no-git makes commander to default git to true + // --git makes commander to default git to true if (process.argv.includes('-g') || process.argv.includes('--git')) { options.forceGit = true }