一段时间后重新开始工作似乎我不知道如何克隆bitbucket存储库。知道为什么我得到"没找到"错误?
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
答案 0 :(得分:24)
这是 Mercurial 存储库,而不是Git存储库。 Bitbucket supports both systems
克隆:
hg clone https://bitbucket.org/helllamer/mod_openid
有关Mercurial的更多信息,请参阅its Wikipedia page。
答案 1 :(得分:9)
在bitbucket屏幕的左侧有一个带按钮的垂直列。顶部的第二个按钮是“CLONE”按钮。 按此按钮。您将获得HTTP地址。
复制此地址并以常规方式在git中使用:
git clone <HTTP address of repo>
答案 2 :(得分:0)
很可能它是一个私有存储库,您拥有访问权限,但我没有。你需要做的是将鼠标移动到顶部左侧窗格上的三个点(参考图像),然后你会弹出一个找到克隆选项的地方。点击它,你就会得到像hg clone bitbucket-url
这样的命令(它是Chris提到的Mercurial存储库)。复制并粘贴到您的终端上。如果您有权访问存储库,那么您将能够克隆它。
答案 3 :(得分:0)
以下适用于Mercurial存储库。
hg clone https://[YourUserName]@bitbucket.org/tr_radlab/radlab-for-windows/branch/default
将您的用户名替换为上面的Url。中的[YourUserName]。
答案 4 :(得分:0)
它与GitHub一样简单和相同。 从浏览器转到Bitbucket存储库并复制URL。 在要在其中克隆存储库的所需位置打开终端,然后键入:
git clone <copied url of repo.>
然后问你的Bitbucket用户名和密码。提供后,您可以克隆它。
答案 5 :(得分:0)
充其量,您只需下载即可,如果您不是cmd类型,则可以使用sourcetree或使用Mercurial享受克隆。