博客迁移到新的macOS系统的操作
1. 说明
换新电脑后,博客的内容需要复制到新的电脑,文件夹为:blog
。
2. 具体操作
- 安装Homebrew,见: https://brew.sh/
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
还有这个操作:
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/name/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
- 安装Git
brew install git
- 安装node.js
brew install node
- 安装hugo
brew install hugo
- 在文件夹
blog
,初始化git
git init
- 利用SSH key方式进行验证,见:Github的blog上传password authentication出错的解决方案
ssh -T git@github.com
ssh-keygen -t ed25519 -C "your_email@example.com"
eval "$(ssh-agent -s)"
touch ~/.ssh/config
open ~/.ssh/config
ssh-add -K ~/.ssh/id_ed25519
pbcopy < ~/.ssh/id_ed25519.pub
以及
git config --global user.name "xiaoledeng"
git config --global user.email "your_email@example.com"
- 测试是否成功:
hugo server -D
sh job.sh