如何搭建Hexo博客,并发布到github上

1、安装好git

2、安装好npm、node

3、切换npm的源,现在阿里的cnpm不行了,要切换成新的:

npm config set registry https://registry.npmmirror.com
npm config get registry

4、安装hexo-cli

npm install -g hexo-cli

查看是否安装成功: 
hexo -v

5、博客初始化:创建一个文件夹,进入该文件夹

 hexo init
在博客文件夹的根目录右键打开 GitBash
hexo s
在浏览器输入localhost:4000查看

新建文章

hexo new "标题"

切换主题

去hexo模板市场 更换,然后放进来themes文件夹,修改_config.yml里面的themes配置即可

发布到github上

1、npm install --save hexo-deployer-git

2、在github创建仓库,名为:xxx.github.io xxx是你的github名字

3、修改_config.yml

# URL
## Set your site url here. For example, if you use GitHub Page, set url as 'https://username.github.io/project'
url: https://你的github名.github.io/
permalink: :year/:month/:day/:title/
permalink_defaults:
pretty_urls:
  trailing_index: true # Set to false to remove trailing 'index.html' from permalinks
  trailing_html: true # Set to false to remove trailing '.html' from permalinks

...

# Deployment
## Docs: https://hexo.io/docs/one-command-deployment
deploy:
  type: git
  repository: https://github.com/你的github名/你的github名.github.io.git
  branch: master

修改代码后推送到github

hexo d

相关推荐
TPCloud1 小时前
快速解决git@github.com: Permission denied (publickey)
git·github·publickey
黑客老陈8 小时前
实战 | 某院校小程序记录
服务器·网络·安全·小程序·web3·github
Funing78 小时前
在VSCode 的终端或虚拟环境中运行git --version 无法识别,但是在电脑上已经装了git
ide·git·vscode·python·深度学习·编辑器·github
微软技术栈14 小时前
智能GitHub Copilot副驾驶®提示和技巧
github·copilot
Linux运维日记15 小时前
saltstack 和 ansible 最新比对
github·ansible·saltstack
倔强青铜三15 小时前
将Next.js项目部署到GitHub Pages的详细指南
前端·javascript·github
油泼辣子多加15 小时前
2024年12月13日Github流行趋势
github
白露与泡影15 小时前
2024最新最全面Java复习路线(含P5-P8),已收录 GitHub
java·开发语言·github
sj11637394031 天前
github配置pages并配置自定义域名
github