바탕화면에 git clone을 해주고
바탕화면에 깔려있는 폴더 코드를 바로 cd를 통해 들어갔다.
그리고
git remote add myRepo git@github.com:FordangIT/myRepo.git
myRepo는 내 레파지토리랑 상관없이
평소 git remote add origin 에서 origin쪽을 담당하는 것 같다.
그리고
git push myRepo reference
myRepo에 branch가 reference에다가 push를 해준 모습이다.
울 코치님은 이렇게 해줬다.
git remote add myRepo git@github.com:FordangIT/deploy-test.git
// 그러니까 깃허브 레파지토리 이름이 deploy-test인 것
git push -u myRepo reference
git branch로, branch 이름 확인할 수 있다.