【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

然后我们再拉取项目,就不用输入账号密码了

 

 

 

 

参考链接:

ubuntu记住gitee账号密码_git存密码的地方 ubuntu-CSDN博客

posted @ 2024-06-12 19:45  代码诠释的世界  阅读(96)  评论(0编辑  收藏  举报