echo "# <레포지토리명>" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin <레포지토리 주소>
git push -u origin main
$ npm i gh-pages --save-dev
홈페이지 URL 추가
"homepage": "https://<사용자계정>.github.io/<레포지토리명>",
배포를 위한 script 추가
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
$ npm run build
$ npm run deploy
Repository
→ branch 확인 (gh-pages)
→ Settings
→ Pages
→ GitHub Pages