hexo+css項目部署到github(仿寫weex使用手冊)

hexo+css項目部署到github

仿寫weex使用手冊

1、概述

前面講了如何使用hexo+css搭建本身的博客,今天主要是總結下如何把本地能訪問的靜態的博客部署到github上。以重寫weex使用手冊爲例(不要問我爲何這麼無聊,等你懷孕了就知道了)。css

博客地址:https://stardew516.github.io/(遷移:https://stardew.github.io/
博客部署地址:https://github.com/stardew516...(https://github.com/stardew/stardew.github.io)git

博客源碼地址:https://github.com/stardew516...github

  • 分支master: 本來打算用來部署,後面發現不可用,棄
  • 分支development:基礎代碼存放,實現本地博客
  • 分支deploy:修改一些信息,部署到github上所用

2、實現

1. 使用hexo+css寫好一套能在本地跑通的靜態博客
2. 安裝 hexo-deployer-git: npm install hexo-deployer-git --save
3. 在github上新建一個倉庫,注意命名格式以下圖,用戶名.github.io

clipboard.png

4. _config.yml 中配置
# 部署部分的設置
deploy:
  type: git
  repo: https://github.com/stardew516/stardew516.github.io.git
  branch: master
  message: hexo + css
5. 生成文件: hexo generate
6. 部署: hexo deploy
7. 訪問: https://stardew516.github.io/
相關文章
相關標籤/搜索