将hexo源文件备份到github

   hexo    hexo  github

将hexo源文件备份到github

1、首次备份

  • 在 Hexo 根目录下,初始化 git 仓库
    1
    git init
  • 创建并切换到分支 blog-source
    1
    git checkout -b blog-source
  • 添加文件列表
    1
    git add -A
  • 添加提交说明
    1
    git commit -m "First commit"
  • 设置远程仓库映射
    1
    git remote add origin git@github.com:ilubov/ilubov.github.io.git
  • 提交
    1
    git push -u origin blog-source

2、之后备份

  • 执行以下命令
    1
    2
    3
    git add -A
    git commit -m "Update message"
    git push origin blog-source 或 git push

3、hexo+github搭建个人博客

  1. 将hexo源文件备份到github
    1. 1、首次备份
    2. 2、之后备份
    3. 3、hexo+github搭建个人博客
Nginx反向代理Google
mysql使用函数递归查找父级或子级id