프로젝트 생성
-> npx create-react-app 플젝이름 --template typescript
레포 연결
브랜치 삭제
저장소 확인
git remote update (remote (원격저장소) 업데이트하면서 다 가져옴)
git branch -r (원격)
git branch -a (로컬, 원격 모두)
git branch -t origin/stage (가져온 원격저장소 중에 이 브랜치를 트래킹하겠다. )
브랜치 생성
1. 로컬 브랜치 생성
git checkout -b <새로운 브랜치 이름>
2. remote branch 생성
git push origin <새로운 브랜치 이름>