npm install -g create-react-app create-react-app my-app cd my-app git init git add . git commit -m "xxx"
在执行npm run eject命令之前,需要执行git init等操作,否则run eject会报一些莫名其妙的错误(和git相关)。
npm install -g create-react-app create-react-app my-app cd my-app git init git add . git commit -m "xxx"
在执行npm run eject命令之前,需要执行git init等操作,否则run eject会报一些莫名其妙的错误(和git相关)。