Get up and running with a React build quickly.
$ git clone https://github.com/adamduckett/react-build.git your-project-folder
$ cd your-project-folder
$ rm -rf .git/
$ git init
$ npm install
$ gulp
The above removes the .git folder before creating a new instance of Git, installing our Gulp dependencies and finally running our default Gulp task.
If your build doesn't require Git simply omit the git init command :)