无法推送到 Bitbucket Mercurial 存储库
Unable to push to a Bitbucket Mercurial Repository
我正在将 SourceTree 与 Bitbucket 一起使用。
我以前可以毫无错误地推送。
现在我明白了
hg push --new-branch default
pushing to https://bitbucket.org/myusername/myrepository/branch/default
abort: HTTP Error 404: Not Found
Completed with errors, see above.
我可以在浏览器中看到存储库。
我可以从另一台机器上推送。它在 url 为 myusername@bitbucket.org/myusername/myrepository
.
的机器上正常工作
您必须删除 URL 的 branch/default
部分。规范存储库 URL 是 https://bitbucket.org/myusername/myrepository/
。
出于某种原因,bitbucket 允许从 URL/more/stuff
进行读取操作,但不允许进行写入操作。
我正在将 SourceTree 与 Bitbucket 一起使用。
我以前可以毫无错误地推送。
现在我明白了
hg push --new-branch default
pushing to https://bitbucket.org/myusername/myrepository/branch/default
abort: HTTP Error 404: Not Found
Completed with errors, see above.
我可以在浏览器中看到存储库。
我可以从另一台机器上推送。它在 url 为 myusername@bitbucket.org/myusername/myrepository
.
您必须删除 URL 的 branch/default
部分。规范存储库 URL 是 https://bitbucket.org/myusername/myrepository/
。
出于某种原因,bitbucket 允许从 URL/more/stuff
进行读取操作,但不允许进行写入操作。