记录:解决每次 git 拉代码都需要输密码的问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记录:解决每次 git 拉代码都需要输密码的问题相关的知识,希望对你有一定的参考价值。

参考技术A git pull 和 git push 每次都需要输入密码解决方案如下:

$ ssh-keygen -p

如果原来有密码需要先输入旧密码,当提示你输入新的密码的时候,按enter就可以啦,继续确认enter就可以

➜ ~ git:(master) ✗ ssh-keygen -p

Enter file in which the key is (/Users/never/.ssh/id_rsa): (注:此处按Enter)

Enter old passphrase: (注:此处需要输入旧密码)

Enter new passphrase (empty for no passphrase): (注:此处直接Enter)

Enter same passphrase again: (注:直接Enter)

Your identification has been saved with the new passphrase

严重参考: https://www.jianshu.com/p/915bdcc7bf46

解决git一直输入用户名和密码的问题

 

 

git config --system --unset credential.helper,在git中输入此命令后,每次拉去代码需要重新输入用户名和密码,可以使用git config --global credential.helper store,这样再获取代码提示输入用户名和密码,输入之后后续就不需要再次输入了。

以上是关于记录:解决每次 git 拉代码都需要输密码的问题的主要内容,如果未能解决你的问题,请参考以下文章

git 解决拉取代码需要输入密码问题

解决git每次提交、更新都需要输入账户密码

vsgit每次都需要拉取吗

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

软件工具微记录-git每次提交拉取都要输入用户名和密码,这个简单粗暴的解决方案可以试一下

git 解决每次push代码都要输入用户名密码和git token失效的问题