목표:
1) github에서 개발 repo의 main 브랜치에서 변경 내용을 다른 브랜치인 feature-branch로 가져오고 Pull Request를 생한다
2) branch를 개인의 branch로 변경한다.
git checkout main
git pull origin main
git checkout feature-branch
git merge main
merge 후
git push --set-upstream origin [Local 생성한 branch가 원격 저장소에 없다면 생성할 branch name]
git push origin --delete test