From 05367bc07deb8b8b1a8248cc205142638d37366c Mon Sep 17 00:00:00 2001 From: Maurice de Beijer Date: Sun, 12 Feb 2017 16:57:26 +0100 Subject: [PATCH] Removed docs --- README.md | 1 - packages/react-scripts/template/README.md | 7 ------- 2 files changed, 8 deletions(-) diff --git a/README.md b/README.md index e658b84f73f..39baa1a5073 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,6 @@ The [User Guide](https://github.com/facebookincubator/create-react-app/blob/mast - [Running Tests](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#running-tests) - [Developing Components in Isolation](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#developing-components-in-isolation) - [Making a Progressive Web App](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#making-a-progressive-web-app) -- [Git Repository](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#git-repository) - [Deployment](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#deployment) - [Advanced Configuration](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#advanced-configuration) - [Troubleshooting](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#troubleshooting) diff --git a/packages/react-scripts/template/README.md b/packages/react-scripts/template/README.md index 14aa23e1ba4..e290b935625 100644 --- a/packages/react-scripts/template/README.md +++ b/packages/react-scripts/template/README.md @@ -61,7 +61,6 @@ You can find the most recent version of this guide [here](https://github.com/fac - [Editor Integration](#editor-integration) - [Developing Components in Isolation](#developing-components-in-isolation) - [Making a Progressive Web App](#making-a-progressive-web-app) -- [Git Repository](#git-repository) - [Deployment](#deployment) - [Serving Apps with Client-Side Routing](#serving-apps-with-client-side-routing) - [Building for Relative Paths](#building-for-relative-paths) @@ -1207,12 +1206,6 @@ Learn more about React Storybook: You can turn your React app into a [Progressive Web App](https://developers.google.com/web/progressive-web-apps/) by following the steps in [this repository](https://github.com/jeffposnick/create-react-pwa). -## Git Repository - -Create React App will create a new Git repository and commit the generated files to it as the initial commit. This step is skipped if the folder you are creating is already part of a larger Git repository. -The initial commit will be created with a message **chore: initial commit from create-react-app**. If you prefer another message it is easy to change before doing any other commits using the command ```git commit --amend -m "Some other message"```. -You can delete the Git repository using the command ```rm -rf .git```. - ## Deployment `npm run build` creates a `build` directory with a production build of your app. Set up your favourite HTTP server so that a visitor to your site is served `index.html`, and requests to static paths like `/static/js/main..js` are served with the contents of the `/static/js/main..js` file. For example, Python contains a built-in HTTP server that can serve static files: