gpt4 book ai didi

git - 如何让 git 只存储我的用户名而不是我的密码?

转载 作者:太空狗 更新时间:2023-10-29 13:57:52 27 4
gpt4 key购买 nike

我知道我可以使用 git config credential.helper 来存储我的用户名和密码。但我只想存储我的用户名,并让终端在每次推送时询问我的密码。这是怎么做到的?

类似于此,但没有密码。

$ git config credential.helper store
$ git push http://example.com/repo.git
Username: <type your username>
Password: <type your password>

最佳答案

Git 凭据助手存储用户名和密码。设计是这样的,如果用户名和密码组合成功,则告诉助手将这两个项目写入其存储。

如果您只想存储用户名而不存储密码,那么您不应该使用凭证助手。相反,您应该禁用凭据帮助程序并将用户名写入远程的 URL。例如,您可以使用 git remote set-url origin http://minyc510@example.com/repo.git 将 origin 的远程 URL 设置为包含您的用户名。请注意,如果您的用户名包含字母和数字以外的字符,则可能需要对其进行百分号转义。

关于git - 如何让 git 只存储我的用户名而不是我的密码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54507296/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com