git push跳过用户名和密码认证配置教程

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

导读 在使用git commit命令将修改从暂存区提交到本地版本库后,只剩下最后一步将本地版本库的分支推送到远程服务器上对应的分支了,如果不清楚版本库的构成,可以查看我的另一篇,git 仓库的基本结构。

新项目开始一段时间了,由于提交频繁。而每次都需要输入用户名和密码,实在受不了了。于是花了点时间来做下去除用户名密码验证的工作

生成shh密码

# ssh-keygen -t rsa

复制ssh密钥

github deploy keys

如果你clone时不是用ssh方式,重新设置remote url

git remote set-url origin git://newurl

注册本地用户名和邮箱

git config user.name ***
git config user.email ***

如果push时提示

Permission denied (publickey)

应该是你没有将你的key添加到ssh中此时需要运行

ssh-add -l

如果列表出来的没有你刚刚添加进去的这个 key 那就需要添加

ssh-add path/to/key

原文来自: https://www.linuxprobe.com/git-push-sshkey.html

转载于:https://my.oschina.net/ssdlinux/blog/3026014

你可能感兴趣的:(git push跳过用户名和密码认证配置教程)