repository를 fork해온다.
fork해 온 repository의 주소를 clone하고
git clone (fork한 repository)
원래 repository 저장소 추가
git remote add (이름) (주소)
저장소 확인
git remote -v
리모트 저장소에서 pull받기
git fetch (이름)
git merge (이름)/master
fork한 저장소에 작업물 올리기
git add .
git commit -m ""
git push
리모트 저장소에 작업물 반영하기
깃헙에서 pull request
https://velog.io/@zansol/Pull-Request-%EC%9D%B4%ED%95%B4%ED%95%98%EA%B8%B0