windows git 配置
2021-03-20 02:25
标签:alt 自定义 gen 查看 ref 报错 port download 下载地址 下载地址:https://git-scm.com/downloads 具体可以参考:https://blog.csdn.net/qq_32786873/article/details/80570783 配置用户名、邮箱 查看用户名邮箱 生成公钥 按三次回车 看到保存的路径 复制id_rsa.pub中的内容,在github设置中新建ssh key,title能够为空 如上图,报错如下 可能存在的原因 github的公钥配置错误了,可是我反复尝试了多次,还是有问题,原因可能是端口被占用,终于找到了解决方案: 在~/.ssh 下,即公钥的统计目录中新建config文件,内容如下 再次ssh -T git@github.com,终于成功了 windows git 配置 标签:alt 自定义 gen 查看 ref 报错 port download 下载地址 原文地址:https://www.cnblogs.com/LeesinDong/p/12308598.html安装
一句话总结:双击->自定义目录->一直next到底配置github
//此处name可修改也不是用于登录github的登录名
git config --global user.name "username"
//github邮箱
git config --global user.email "email"
git config --global user.name
git config --global user.email
ssh-keygen -t rsa -C "yourEmail@xx.com"
cd ~/.ssh
# 公钥的内容在id_rsa.pub
cat .\id_rsa.pub
测试ssh
ssh -T git@github.com
ssh: connect to host github.com port 22: Connection timed out
Host github.com
User git
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443