Post

搭建这个 Jekyll 博客的全过程

搭建这个 Jekyll 博客的全过程

1.准备工作:

安装了 Ruby、Jekyll 和 Bundler。

2.创建本地 Jekyll 站点

使用命令 jekyll new YangBlog240715 创建了新的 Jekyll 项目。

进入新创建的目录 cd YangBlog240715

3.初始化 Git 仓库

在博客目录中运行 git init

添加文件到 Git:git add .

设置 Git 用户信息: Copygit config user.email "your_email@example.com" git config user.name "Your Name"

创建初始提交:git commit -m "Initial commit"

4.创建 GitHub 仓库

在 GitHub 上创建了名为 youngbeauty.github.io 的新仓库。

5.连接本地仓库和 GitHub

添加远程仓库: Copygit remote add origin https://github.com/youngbeauty/youngbeauty.github.io.git

6.推送到 GitHub

尝试推送时遇到了一些问题,包括网络连接问题(换源)和远程仓库已有内容(创建仓库时候加了个readme文档)的问题。

最终成功推送本地内容到 GitHub。

7.配置 GitHub Pages

在 GitHub 仓库设置中启用了 GitHub Pages。

8.验证网站

访问 https://youngbeauty.github.io 确认网站已成功部署。

总结

了解了如何在本地编辑网站内容,学习了 Jekyll 的基本结构和如何创建新的博客文章。

整个过程展示了从本地开发到 GitHub 部署的完整流程,包括处理一些常见问题(如 Git 配置、网络连接问题等。现在已经成功搭建了一个基于 Jekyll 的 GitHub Pages 博客。

附录:

常用语句: · 在博客根目录下打开终端,运行 bundle exec jekyll serve · 在浏览器中访问 http://localhost:4000预览更改

提交更改: git add . git commit -m "Add new blog post" git push origin main

This post is licensed under CC BY 4.0 by the author.

Trending Tags