7

我正在尝试将更改推送到 bitbucket 中的本地远程存储库。我可以访问这个存储库。但是当我这样做时,它会像这样显示。它应该显示密码提示,但没有显示。

$ hg push
pushing to https://sat801@bitbucket.org/sat801/i4330-notification-sm
abort: http authorization required

在我的 .hg 文件夹中,这是我的 hgrc 文件

[ui]
username = sat801 <*******@example.com>
editor = nano

[paths]
default = https://sat801@bitbucket.org/sat801/i4330-notification-sm

我既不能在我的本地仓库中推送任何东西,也不能从中提取任何东西。它显示相同的错误

abort: http authorization required

请让我知道如何解决这个问题

4

2 回答 2

8

我认为您要么必须使用sat801:mypassword@bitbucket.org(即包括您的密码),要么放弃输入您的用户名。

于 2013-04-09T13:04:40.427 回答
7

我不得不这样做:

~/.hgrc

[auth]
bb.prefix = bitbucket.org
bb.username = johndoe
bb.password = *********
bb.schemes = http https

其中“bb”可以是任何东西,前缀对应于http服务器域

于 2016-09-13T20:20:38.317 回答