1
ssh-keygen -t rsa -C ‘git注册的邮箱’ //记得改成自己的注册git的邮箱
2 把公钥黏贴到http://git.software.team/profile/keys页面中的大框中
3 本地配置全局用户名和用户Email git config --global user.email "[email protected]" git config --global user.name "Your Name"
不配置,就无法实现 git push
4 设置远程仓库的端口:2224,
增加一个文件,xxxxx\.ssh\config文件,格式如下:
Host github.com
Hostname ssh.github.com
Port 443
User git
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
hostname 填git的服务器地址 就可以解决该问题 如果ping 不通 git服务器的地址 那就是Ubuntu的网络问题 网络应该设置为nat模式不是桥接模式
ping不通 可以通过命令重启网络服务器
systemctl restart networking 重启服务 sudo /etc/init.d/networking restart
这个问题可以上百度解决
标签:git,虚拟机,global,ssh,ubuntu,服务器,config From: https://www.cnblogs.com/xiongze1234/p/17636886.html