From 47d2a5984f0d2f7fa0404178504369fbfc49df5a Mon Sep 17 00:00:00 2001 From: Christopher Button <38411730+devgeist@users.noreply.github.com> Date: Fri, 31 Jan 2020 20:59:02 +1300 Subject: [PATCH] Update commit message to use imperative mood (#8377) Why: * As per best practice: https://git.kernel.org/pub/scm/git/git.git/tree/Documentation/SubmittingPatches#n135 See also: https://chris.beams.io/posts/git-commit/#imperative --- packages/react-scripts/scripts/init.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-scripts/scripts/init.js b/packages/react-scripts/scripts/init.js index 9c78fcfbfb5..556bab02957 100644 --- a/packages/react-scripts/scripts/init.js +++ b/packages/react-scripts/scripts/init.js @@ -53,7 +53,7 @@ function tryGitInit(appPath) { didInit = true; execSync('git add -A', { stdio: 'ignore' }); - execSync('git commit -m "Initial commit from Create React App"', { + execSync('git commit -m "Initialize project using Create React App"', { stdio: 'ignore', }); return true;