如何在macos上设置github

安装homebrew和git

安装homebrew

1
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

等待homebrew安装完成之后开始安装git

1
brew install git

配置github账户信息并生成ssh

安装完成git之后开始配置github账户信息

1
2
git config --global user.name "miaoyanginfo"
git config --global user.email "paulmiao@me.com"

在本地生成ssh

1
ssh-keygen -t ed25519 -C "paulmiao@me.com"

将ssh密钥添加到ssh-agent

后台启动ssh代理

1
eval "$(ssh-agent -s)"

然后修改~/.ssh/config

1
vi ~/.ssh/config

插入下面的字段

1
2
3
4
Host *
AddKeysToAgent yes
UseKeychain yes
IdentityFile ~/.ssh/id_ed25519

将ssh私钥添加到ssh-agent并将密码存储在密钥链中。

1
ssh-add --apple-use-keychain ~/.ssh/id_ed25519

将ssh密钥添加到github账户

将ssh公钥复制到剪贴板。

1
pbcopy < ~/.ssh/id_ed25519.pub

然后粘贴到github账户设置里面的ssh key 中。

image.png|300

引用

https://blog.51cto.com/u_14201949/6145688
https://www.php.cn/faq/541966.html

Windows平台的部署可以参阅我的另一篇文章在GitHub上部署HEXO | 渊澄|YCYC.WIN