Post

博客搭建一:github创建博客项目

参考:
博客搭建
https://chirpy.cotes.page/categories/
https://github.com/cotes2020/jekyll-theme-chirpy
如何快速搭建自己的github.io博客
jekyll令行用法
【Jekyll】使用GitHub Pages + Jekyll搭建自己的技术博客,Jekyll服务器的搭建

前言

之前一直使用简书写博客,差不多积攒了十万字,但是过程中偶尔遇到一些问题,比如不方便分类,导致查找问题时不方便快速查找对应的笔记,以及简书莫名其妙的就让谋篇博客被提示近自己可见,本来写博客一方面是记录生活和工作中遇到的一些问题的分享,没法分享了导致只要不登录简书账号自己都没法查看了,搞得很不爽,干脆就把博客后续迁移到github上 js

一、创建github账号

二、配置xxx.github.io的仓库

js 三、将创建的仓库配置成githubpages js js js

三、将chirpy的模板下载下来放到自己的xxx.github.io的仓库里

四、配置个人的基本信息_config.yml

五、本地调试

1
2
3
4
5
6
7
bundle install
bundle lock --add-platform java
bundle exec jekyll server --trace
# 删除被占用的进程
sudo lsof -i:4000
sudo kill -9 pid号

或者使用brew的方式安装

1
2
3
4
5
6
7
8
# 安装jekyll
# brew install github-pages
# intel的mac电脑
brew install --cask githubpulse
# m1的mac
sudo gem install jekyll
# 运行
jekyll serve --watch

Error: It seems the App source '/opt/homebrew/Caskroom/githubpulse/0.3.10/GithubPulse.app' is not there. Warning: No available formula with the name “github-pages”. Did you mean github-release? ==> Searching for similarly named formulae and casks… ==> Formulae github-release

To install github-release, run: brew install github-release

==> Casks githubpulse

To install githubpulse, run: brew install –cask githubpulse LoadError: cannot load such file – google/protobuf_c

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