【ubuntu】记住gitlab的登录账号密码
一、场景
当我们拉取多个项目时,每次总要输入密码,http方式的时候
二、方法
git config --global credential.helper store
然后可以手动配置账号密码
配置~/.gitconfig文件
[user] name = test email = test@email.com [credential] helper = store [filter "lfs"] smudge = git-lfs smudge -- %f process = git-lfs filter-process required = true clean = git-lfs clean -- %f
配置~/.git-credentials凭据
https://username:passwd@gitlab.test.com
然后我们再拉取项目,就不用输入账号密码了
参考链接: