-github에 올리는 법
- 레포지토리 생성
- git init
- git add .
- git remote add origin (git url)
- git commit -m "메세지"
- git branch -M main
- git push origin main
-git 협업
- 중앙 원격 저장소 fork
- git clone 개인 저장소
- git remote add upstream 중앙 원격 저장소
- git checkout -b 브랜치이름
- 커밋, 푸쉬
- Pull Request
- end