1. git 常规配置
git config --global user.name "github上的注册名称"
git config --global user.email "github上的注册邮箱"
ssh-keygen -t rsa -C '[email protected]' -f ~/.ssh/id_rsa_github
将生成SSH秘钥,将 id_rsa_github.pub 中的内容直接粘贴到github对应处即可
2. git clone 失败问题解决( connect to host github.com port 22: Connection refused)
git clone仓库时候出现错误:
使用 ssh -T git@github.com 也确认22端口可能被屏蔽了,尝试连接GitHub的443端口
连接方法
在.ssh路径下新建config文件:执行** touch config** 即可,然后**chmod 777 config **增加编辑权限后,加上如下内容:
# github
Host github.com
HostName ssh.github.com
Port 443
IdentityFile ~/.ssh/id_rsa_github
最后也是成功pull下来了
版权归原作者 你好,小H同学 所有, 如有侵权,请联系我们删除。