博客迁移到新的macOS系统的操作

2022-07-19
#Unix #Blog

1. 说明

换新电脑后,博客的内容需要复制到新的电脑,文件夹为:blog

2. 具体操作

/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 -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

3. 参考