작성한 server.htm 파일을 커밋합니다.
infoh@hojin MINGW64 /e/gitstudy05 (master)
$ git add server.htm
infoh@hojin MINGW64 /e/gitstudy05 (master)
$ git commit -m "good day"
[master 6a947b8] good day
1 file changed, 2 insertions(+)
create mode 100644 server.htm
커밋한 내용을 원격 저장소(서버)로 업로드합니다.
infoh@hojin MINGW64 /e/gitstudy05 (master)
$ git push origin master 푸시, 원격 서버로 전송
Enumerating objects: 4, done.
Counting objects: 100% (4/4), done.
Delta compression using up to 8 threads
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 341 bytes | 341.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To https://github.com/jinygit/gitstudy05.git
4864581..6a947b8 master -> master
방금 작성한 코드와 커밋으로 원격 저장소를 갱신했습니다. 갱신된 원격 저장소의 커밋을 복제한 저장소에도 동기화합시다.