1.. 創建git項目 ( 碼雲, github 均可以 ), 具體步驟: https://www.cnblogs.com/andy-lehhaxm/p/10720717.htmlhtml
1.1 git 和 項目 關聯: git remote add origin gti@gitee.com/CMCC_10086/reactJianShu.git ( git remote add origin 單詞順序不能錯 )node
1.2 再 git add . --> git commit -m '' --> git push react
1.3 git push 提示錯誤 reject 時, 須要手動消除差別 https://www.cnblogs.com/andy-lehhaxm/p/10787996.htmlgit
git pull origin master --allow-unrelated-histories //把遠程倉庫和本地同步,消除差別, 須要從新add . 提交 pushgithub
2.. 經過react腳手架工具, 建立初始化本項目 ( 項目名不能有大寫字母 )npm
2.1 先安裝腳手架: npm install -g create-react-appapp
2.2 使用腳手架創建項目: create-react-app myProgramNameide
( 或者--react官方--2.3 或者用 npx create-react-app myProgramName https://reactjs.org/docs/create-a-new-react-app.html )工具
npx 是node>=6, 且 npm>=5.2 新引入的命令spa
npx create-react-app my-app cd my-app npm start