(因为新服务器的 git 已经安装好了,所以直接开始配置)
- 看看目前的 git config:
git config -list
,然后,设置用户名和邮箱:
git config --global user.name "用户名"
git config --global user.email "邮箱"
-
为了让服务器有访问各种 private repo 的权限,需配置 ssh key。
- 首先,在服务器执行
ssh-keygen -t rsa
。 - 然后,Github → 设置 → SSH and GPG keys → New SSH key,将 .ssh/id_rsa.pub 中的内容,复制到框里。
- 首先,在服务器执行
-
可以测试一下:
ssh -T [email protected]
参考教程:
标签:Git,配置,git,ssh,服务器,config,SSH From: https://www.cnblogs.com/moonout/p/18334937