Upload Hexo by git

첫 업로드

1
2
3
4
5
6
$ git init
$ git remote add origin https://github.com/Zerohertz/Hexo_Blog.git (github의 주소)
$ git add .
$ git remote -v (확인)
$ git commit -m "내용" (주석)
$ git push origin master

수정, 추가 업로드

1
2
3
$ git add .
$ git commit -m "내용"
$ git push origin master