이제 깃허브에 업로드를 해봅시다. git push [별명] [브랜치] 명령어를 사용하면 됩니다. 현재 브랜치는 master로 고정되어 있고, 별명은 조금 전에 등록했던 origin을 사용하면 됩니다.
콘솔
$ git push origin master
Enumerating objects: 44, done.
Counting objects: 100% (44/44), done.
Delta compression using up to 6 threads
Compressing objects: 100% (41/41), done.
Writing objects: 100% (44/44), 99.05 KiB | 4.95 MiB/s, done.
Total 44 (delta 0), reused 0 (delta 0)
To https://github.com/zerocho3/node-deploy
* [new branch] master -> master
다시 https://github.com/아이디/node-deploy로 접속하면 소스 코드가 업로드된 것을 확인할 수 있습니다.
▲ 그림 15-28 소스 코드가 깃허브에 업로드된 모습