我正在将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.
我可以在浏览器中看到存储库。
我可以从其他机器上推送。可以在网址为myusername@bitbucket.org/myusername/myrepository
的计算机上正常工作。
答案 0 :(得分:3)
您必须删除URL的branch/default
部分。规范的存储库URL为https://bitbucket.org/myusername/myrepository/
。
由于某些原因,bitbucket允许从URL/more/stuff
进行读取操作,但不允许进行写入操作。