.git 파일 있는 곳에서 git bash
- git clone UPSTREAM주소 : main에 있는 upstream 다운
- git remote add upstream UPSTREAM주소 : upstream주소를 알려줌
- -------------------------------------------------------------------------------------- 처음에 다운받을때 1번
- git branch develop/브랜치명 : 브랜치 생성
- git checkout develop/브랜치명 : 해당 브랜치로 이동
- git pull upstream develop : develop에 있는 작업을 내 로컬 피씨로 다운
- git commit -a "커밋메세지"
- git push