Skip to content
Prev Previous commit
git add -A instead of git add . after code review
  • Loading branch information
mauricedb committed Jan 19, 2018
commit bbd5c9a3a3aee8bef2eb595d8356514ec4ea7d58
2 changes: 1 addition & 1 deletion packages/react-scripts/scripts/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function gitInit() {
}

execSync('git init', { stdio: 'ignore' });
execSync('git add .', { stdio: 'ignore' });
execSync('git add -A', { stdio: 'ignore' });
execSync('git commit -m "Initial commit from Create React App"', {
stdio: 'ignore',
});
Expand Down