当前位置:   article > 正文

linux服务器git pull/push时提示输入账号密码之免除设置_git pull git@10.66.110.222's password:

git pull git@10.66.110.222's password:

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

git config --global credential.helper store

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

[user]

name = 名称

email =xxxx@xxxx.com

[credential]

helper = store

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

[root@]# git pull

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代码都不再需要输入账号密码了~

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

已保存过密码,发现不好修改:可以这样设置

git remote set-url origin https://zengyihong:aBc1054995637@gitlab.com/www.xxx/com.git

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/457781
推荐阅读
相关标签
  

闽ICP备14008679号