https://github.com/ 로그인 후 New repository

Repository name 작성 → Add a README file → Create repository

$ git config --global user.name "una"
$ git config --global user.email "una_j@naver.com"
$ git remote add origin https://github.com/[Owner]/[Repository name].git (Repository URL)

$ git branch -m master main (GitHub는 main이 메인 브랜치이므로 이름 변경)
$ git pull origin main --allow-unrelated-histories (GitHub 저장소에 있는 내용을 로컬 저장소에 반영)
Sign in with your browser → 로그인 → Authorize git-ecosystem

