本文介绍了如何克隆一个Bitbucket存储库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

一段时间后恢复工作,似乎我不知道如何克隆位桶存储库.知道为什么我会收到未找到"错误吗?

Getting back to work after a while it seems I don't know how to clone a bitbucket repository. Any idea why I get the "not found" error?

git clone --verbose https://bitbucket.org/helllamer/mod_openid
Cloning into 'mod_openid'...
remote: Not Found
fatal: repository 'https://bitbucket.org/helllamer/mod_openid/' not found

系统:

git version 1.9.1
uname -a Linux openvpnas2 3.13.0-44-generic #73-Ubuntu SMP Tue Dec 16 00:22:43 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

推荐答案

这是 Mercurial 存储库,而不是Git存储库. Bitbucket支持两个系统.

克隆为:

hg clone https://bitbucket.org/helllamer/mod_openid

有关Mercurial的更多信息,请参见其Wikipedia页面.

For more information about Mercurial please see its Wikipedia page.

这篇关于如何克隆一个Bitbucket存储库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-18 02:26
查看更多