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
This commit is contained in:
Christopher Button
2020-01-31 20:59:02 +13:00
committed by GitHub
parent fb9745eb76
commit d9e05f9ce5

View File

@@ -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;