git pushgit remote 명령어를 통해 원격지로 설정된 git reposiotry에,git push 명령어를 사용하여 GitHub에 코드를 올릴 수 있습니다.(git push 한 branch를 클라우드에서 호스팅합니다)git push 매개 변수를 통해 어디로 push할지 지정합니다.origin은 일반적으로 원격지를 칭합니다(push하기 전에, git remote -v 명령어를 사용하여 원격지가 가리키는 장소를 확인합니다)git remote add originhttps://github.com/Min-SungJo/VCSgit remote -vgit push origin maingit push origin masterlocal-branch와 remote-branch는 동일하지 않습니다.git pu..