linux服务器git pull/push时提示输入账号密码之免除设置

1、先cd到根目录,执行git config --global credential.helper store命令

[root]# git config --global credential.helper store

2、执行之后会在.gitconfig文件中多加红色字体项

[user]

name = 名称

email =xxxx@xxxx.com

[credential]

helper = store

3、之后cd到项目目录,执行git pull命令,会提示输入账号密码。输完这一次以后就不再需要,并且会在根目录生成一个.git-credentials文件(要生成.git-credentials文件才会生效)

[root@]# git pull(随便一个Git地址pull时提示输入账号密码,输完之后就在根目录下生成.git-credentials文件,如果没生成,账号密码就无法存储)

Username for 'https://xxx': xxxx@xxxx.com

Password for 'https://xxxx@xxxx.com@git.xxx.net':

[root@]# cat .git-credentials

https://Username:Password@git.xxx.net

4、之后pull/push代码都不再需要输入账号密码了~

 

不想保存账号密码了,删掉也可以

 

 

已保存过密码,发现不好修改:可以这样设置
————————————————
版权声明:本文为CSDN博主「华尔街之猫」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_24935119/article/details/90700780

上一篇:jenkins学习13-凭据管理(删除多余的凭据)


下一篇:Pulumi Stack 命令不能找到默认的 Stack