자식 저장소와 동기화할 원격 저장소도 생성합시다. 깃허브에서 gitstudy11_child로 저장소를 만듭니다. 생성된 https://github.com/jinygit/gitstudy11_child.git 주소를 복사합니다.
그리고 다시 깃 배시로 돌아와 원격 저장소와 연결한 후 자식 저장소의 커밋을 원격 저장소로 전송합니다.
infoh@DESKTOP MINGW64 /e/gitstudy11_child (master)
$ git remote add origin https://github.com/jinygit/gitstudy11_child.git 원격 저장소 등록
infoh@DESKTOP MINGW64 /e/gitstudy11_child (master)
$ git push -u origin master 커밋 전송
Enumerating objects: 3, done.
Counting objects: 100% (3/3), done.
Writing objects: 100% (3/3), 232 bytes | 116.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To https://github.com/jinygit/gitstudy11_child.git
* [new branch] master -> master
자신의 URL 주소
깃허브에서 커밋 정보가 전송된 것을 확인할 수 있습니다.
▼ 그림 11-6 자식 저장소의 커밋 정보 확인