git:更多帐户/存储在同一台机器上

时间:2018-10-02 09:25:44

标签: git

我已经安装了git,并在文件夹“ folder1”上使用存储库“ repo1”创建了一个帐户“ acc1”。

现在,我进行了第二次回购“ repo2” https://github.com/acc2/repo2.git 使用git config --global在本地设置新的user.name和电子邮件。 正在运行

git config -l

说正确

user.name=acc2
user.email=acc2@second.email

但是,如果我使用git push -u origin master,它会说:

Permission to acc2/repo2.git denied to acc1.
fatal: unable to access 'https://github.com/acc2/repo2.git/': The requested URL returned error: 403

如何使第二个帐户正常工作(不使用ssh)? 我可以删除机器上的第一个帐户。我找不到该设置的位置。

1 个答案:

答案 0 :(得分:0)

git config --local credential.helper ""

以我的情况工作