gpt4 book ai didi

Git:如何指定不同的用户来获取?

转载 作者:行者123 更新时间:2023-12-02 04:34:34 26 4
gpt4 key购买 nike

我以 userA 身份登录到一台计算机。

$ git remote -v 
origin git:/git/repo/code.git (fetch)
origin git:/git/repo/code.git (push)

当我执行“git fetch origin”时,它要求输入用户 A 的密码。

是否可以在 git 服务器上以 userB 身份获取?

谢谢。

最佳答案

根据 gitcredentials docs 中的“凭据上下文”你可以添加你的 git 配置文件:

[credential "git:/git/repo/code.git"]
username = userB

这样就可以了。

另一种实现你想要的方法是改变你的 Remote :

git config remote.origin.url https://userB:password@example.com/repo.git

但是您需要为您的存储库提供一个 http url。

关于Git:如何指定不同的用户来获取?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22237690/

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