ubuntu配置git ssh连接,不使用密码提交代码

配置邮箱和用户名

git config --global user.email="[你的邮箱]"
git config --global user.name="[你的用户名]"

查看是否配置成功

git config --global --list

在这里插入图片描述
切换到~/.ssh目录下

cd ~/.ssh

生成ssh rsa密钥

ssh-keygen -t rsa -C "[你的邮箱]"

ubuntu配置git ssh连接,不使用密码提交代码_第1张图片
编辑查看rsa公钥信息

vim ~/.ssh/id_rsa.pub

选中复制
在这里插入图片描述
在这里插入图片描述
复制到github上
ubuntu配置git ssh连接,不使用密码提交代码_第2张图片

ubuntu配置git ssh连接,不使用密码提交代码_第3张图片

ubuntu配置git ssh连接,不使用密码提交代码_第4张图片

在这里插入图片描述
测试:
ubuntu配置git ssh连接,不使用密码提交代码_第5张图片
补充,如果出现下面的情况,输入yes即可

ubuntu配置git ssh连接,不使用密码提交代码_第6张图片

你可能感兴趣的:(git,ssh,ubuntu)