1

注意:我正在使用 Go Gits 应用程序来托管我的存储库

IDE:NetBeans 8.2

我正在尝试将本地提交推送到我的上游分支,它返回一个名为“Git Command Failed”的消息框,其中包含以下消息:

http://UserName@DomainRedacted:3000/Redacted/Web-API-Includes.git:不支持身份验证

我使用了正确的用户名和密码,我可以只使用 git shell,但最好使用 netbeans 内置的推送功能。

我尝试在此答案中进行以下练习:Netbeans can pull but not push to Github: "authentication not supported"

4

1 回答 1

0

您可以尝试测试从 url 中删除用户名是否有帮助。

在命令行中,转到您的存储库并键入:

cd c:\path\to\my\repo
git remote set-url origin http://domainredacted:3000/Redacted/Web-API-Includes.git

然后从 NetBean 重试。

如果您git config -l确实包含一个credential.helperto manager,您的用户名/密码应该被缓存在其中。

于 2017-03-13T05:34:36.577 回答