1. 程式人生 > >hexo從零開始

hexo從零開始

-c htm 部署 開始 ble 新建 log div line

部署Hexo

  • Hexo官方文檔

新建一個文件夾,比如,Blog,然後進入該文件夾下:

npm install hexo-cli -g hexo version

安裝依賴包

npm install

配置站點文件

為了能夠使Hexo部署到GitHub上,需要安裝一個插件:

npm install hexo-deployer-git --save

部署博客的配置:

# Deployment ## Docs: http://hexo.io/docs/deployment.html # deploy: # type: git # repo: [email protected]:michael728/michael728.github.io.git
# branch: master deploy: type: git repo: [email protected]:Michael728/michael728.github.io.git #從github博客項目復制,切換為ssh地址 branch: master

hexo從零開始