From 27a233e0e82decb71a96bdca8fdf1f41ca8619e8 Mon Sep 17 00:00:00 2001 From: Christopher Button Date: Sun, 26 Jan 2020 22:28:54 +1300 Subject: [PATCH] Update commit message to use imperative mood 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;