로컬에서 브랜치를 따고, 원격에 푸시를 하려고 하면
원격 브렌치는 아직 존재하지 않기에 등록해야한다.
git push --set-upstream origin 브랜치명
혹은
git push -u origin 브랜치명
// -u는 --set-upstream의 줄임
// 작성한 브랜치로 upstream 설정
// 쉽게 이해하면 local - downstream, remote - upstream
remote 연결 후 push까지 해준다.
Reference
https://pers0n4.io/github-remote-repository-and-upstream/