Hexo & Git 常用命令
Hexo 常用命令
hexo new “name” # 新建文章
hexo new page “name” # 新建页面
hexo g # 生成页面
hexo d # 部署
hexo g -d # 生成页面并部署
hexo s # 本地预览
hexo clean # 清除缓存和已生成的静态文件
hexo help # 帮助
Git命令合集
查看git对应的远程仓库地址:
git remote -v
删除关联对应的远程仓库地址:
git remote rm origin
查看是否删除成功,如果没有任何返回结果,表示OK
git remote -v
重新关联git远程仓库地址:
git remote add origin https://github.com/alantang1977/alantang1977.github.io.git
deploy:
type: git
repo: https://github.com/alantang1977/alantang1977.github.io.git
branch: master
deploy:
type: git
repo: git@github.com:alantang1977/alantang1977.git
branch: main
安装Hexo主题
安装 next 主题
在git上克隆主题文件
git clone https://github.com/iissnan/hexo-theme-next themes/next
在站点目录下的配置文件_config.yml 中找到以下部分,并修改。
theme: next #选择博客主题,名字为themes中选择的主题文件夹名称
Hexo & Git 常用命令
http://example.com/2024/05/15/Hexo&Git 常用命令/