怎样解决Ubuntu系统中git每次提交都要输入密码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样解决Ubuntu系统中git每次提交都要输入密码相关的知识,希望对你有一定的参考价值。
参考技术A 1.首先到/articles/generating-ssh-keys7.在github上添加SSH密钥:a.选择帐号设置,如图倒数第二个选项b.选择SSHKeys,如下图:c.点击AddSSHKey,如下图:Title随便填写Key为~/.ssh/id_rsa.pub的内容,如下图:d.点击AddKey,添加Key完成。8.按照如下图的步骤上传代码:具体指令:a.初始化git配置:gitconfig--globaluser.name"YourName"gitconfig--globaluser.emailyourihua@sina.comb.在你要提交的工程的根目录,执行gitinitgitadd.gitstatus#查看当前的git状态gitcommit-m"上传第一个版本"gitlog#查看git日志c.上传工程到githubgitremotermorigingitremoteaddorigingit@github.com:/first_app.gitgitpush-uoriginmaster注意:提交跟新gitadd-u这样,你的工程就成功推送到github的服务器上了。取消Git每次拉取提交推送都要输入密码
原因:在初始化配置Git用户信息时,设置了用户密码
解决方式:重置用户密码,并设置为空
$ ssh-keygen -p
Enter file in which the key is (/c/Users/xxx/.ssh/id_rsa): (直接Enter)
Enter old passphrase:(输入旧密码)
Key has comment ‘xxx@DESKTOP-CNLBIPC‘
Enter new passphrase (empty for no passphrase):(直接Enter)
Enter same passphrase again:(直接Enter)
Your identification has been saved with the new passphrase.
*********************************************************************************************************
百度了很多都是这个命令
$ git config --global credential.helper store
然后,下次再输入一次 账号密码 就可以了
但是在我电脑上就是不管用o(╥﹏╥)o
以上是关于怎样解决Ubuntu系统中git每次提交都要输入密码的主要内容,如果未能解决你的问题,请参考以下文章