解决git push/pull 每次都要输入密码ssh-keygen

Posted 人生何必久睡

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决git push/pull 每次都要输入密码ssh-keygen相关的知识,希望对你有一定的参考价值。

一、问题描述

以github为例

每次在向github服务器 推送代码(git push),都会提示输入用户名密码

二、问题原因

在clone 代码时使用的是HTTS协议

三、解决方法

1.clone代码时使用SSH协议

2.本地git配置 打开终端

-----------------------系统配置------------------------------------
git config --global core.quotepath false  //支持utf-8编码 解决中文乱码
git config --global user.name username
git config --global user.email address@email.com
-----------------------系统配置------------------------------------

3.生成一个新密钥并将它添加到github

#1 打开终端,输入一下文本,替换自己的github邮箱地址
# 注意:生成秘钥的时候,会提示输入密码,直接默认回车,
$ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
#2 生成的公钥和私钥在 /home/you/.ssh/目录下  id_rsa 和id_rsa.pub

#3 复制公钥
$ cat /home/you/.ssh/id_rsa.pub 

----------------------------------------------------------------------------------------------------

-------------------------------------------------------------------------------------------------------

 

github 官网上写的清清楚楚,可直接进入看官网教程

https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/

 

以上是关于解决git push/pull 每次都要输入密码ssh-keygen的主要内容,如果未能解决你的问题,请参考以下文章

ssh链接git服务器,解决push pull要求输入密码问题

GIT每次都要输入用户名和密码的解决方案

git如何避免push/pull时输入密码

怎样解决Ubuntu系统中git每次提交都要输入密码

https方式下 git push 每次都要输入密码的解决办法

怎样解决Ubuntu系统中git每次提交都要输入密码