git config --global user.name "yourname"
git config --global user.email "[email protected]"
git config --global --list
git config user.name
,git config user.email
配置 ssh 后,使用ssh 地址 clone 项目,无需再输入账号密码。一次配置,永久使用。
检查 ssh 是否存在
生成秘钥
ssh-keygen -t rsa -C "[email protected]"
生成后就可以通过上述方式找到 ssh,拷贝一下,接下来去 github ——
在 github 中添加秘钥
点击头像 → Settings → SSH and GPG keys → New SSH key → 黏贴 ssh-rsa
开头的串串 → 确定添加 → OK啦!
关于 ssh 的详细操作和解说,参考: https://www.liaoxuefeng