使用GitHub上管理hexo博客源文件

  1. 建立新的Repository,与hexo博客文件夹同名
  2. 进入本地博客文件夹,执行 git init
  3. 设置远程仓库地址 git remote add origin git@github.com:xxx/xxx.git
  4. 修改.gitignore文件,加入:public/ 和 .deploy/
  5. 提交到缓存区:git add .
  6. 提交到本地仓库:git commit -m "xxxxxxxx"
  7. 推送到远程仓库:git push origin master

注:远程仓库更新时,使用git pullgit fetch同步到本地

参考: