git push命令每次都要输入用户名和密码的问题处理

Posted 阮文武的网络日志

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git push命令每次都要输入用户名和密码的问题处理相关的知识,希望对你有一定的参考价值。

git push命令每次都要输入用户名和密码。原因是在添加远程库的时候使用了https的方式。所以每次都要用https的方式push到远程库。

这是github里的界面截图:

 

查看使用的传输协议:

git remote -v

wuxiao@wuxiao-C-B150M-K-Pro:~/MyGithub/DailyBlog$ git remote -v 
origin https://github.com/toyijiu/DailyBlog.git (fetch) 
origin https://github.com/toyijiu/DailyBlog.git (push)

重新设置成ssh的方式:

git remote rm origin
git remote add origin git@github.com:username/repository.git
git push -u origin master

再看下当前的传输协议: 
wuxiao@wuxiao-C-B150M-K-Pro:~/MyGithub/DailyBlog$ git remote -v 
origin git@github.com:toyijiu/DailyBlog.git (fetch) 
origin git@github.com:toyijiu/DailyBlog.git (push)

然后就可以了。

以上是关于git push命令每次都要输入用户名和密码的问题处理的主要内容,如果未能解决你的问题,请参考以下文章

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

git push每次都要身份验证,如何解决?

git push 每次都提示输入密码解决方法

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

git学习 7 git每次push都输入用户名 密码

解决TortoiseGit每次Pull或者Push都需要输用户名密码的问题