231 1 分钟

基于 GitHub issue 和 preact 的评论插件 # 部署步骤 打开这个网页:https://github.com/settings/developers 转到 OAuth Apps,点击 “New Oauth Apps” 输入应用名称、网页地址、介绍和 Callback 地址(填博客网页地址) 点击 “Generate new client secret” 复制 Client ID 和 Secret,备用 根据你使用的 Hexo 主题的不同,修改评论配置,这里我以 hexo-butterfly 主题为例 完成
594 1 分钟

# Git 推送仓库教程 # 步骤 1:初始化仓库 如果你的项目还没有与 Git 仓库关联,你需要执行以下步骤: 在本地计算机上创建项目文件夹: mkdir my-projectcd my-project 初始化 Git 仓库: git init # 步骤 2:添加和提交更改 在你的项目中进行代码编写后,你需要将更改添加到 Git 仓库: 添加更改到暂存区,用于准备提交: git add .这将添加所有修改的文件到暂存区。如果你只想添加特定文件,使用 git add 文件名 。 提交更改到本地仓库: git commit -m...
362 1 分钟

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. # Quick Start # Create a new post h$ hexo new "My New Post"More info: Writing # Run server h$...