如何克隆bitbucket存储库?

问题描述 投票:17回答:6

一段时间后重新开始工作似乎我不知道如何克隆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
git bitbucket clone
6个回答
24
投票

这是一个Mercurial存储库,而不是Git存储库。 Bitbucket supports both systems

克隆:

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

有关Mercurial的更多信息,请参阅its Wikipedia page


10
投票

在bitbucket屏幕的左侧有一个带按钮的垂直列。顶部的第二个按钮是“CLONE”按钮。按此按钮。您将获得HTTP地址。 enter image description here

复制此地址并以常规方式在git中使用:

git clone <HTTP address of repo>


0
投票

最有可能的是,它是一个私有存储库,您拥有访问权限,但我没有。你需要做的是将鼠标移动到顶部左侧窗格上的三个点(参考图像),然后你会弹出一个找到克隆选项的地方。点击它,你会得到一个像hg clone bitbucket-url这样的命令(它是Chris提到的Mercurial存储库)。复制并粘贴到您的终端上。如果您有权访问存储库,则可以克隆它。


0
投票

以下适用于Mercurial存储库。

hg clone https://[YourUserName]@bitbucket.org/tr_radlab/radlab-for-windows/branch/default

将您的用户名替换为上面的Url中的[YourUserName]。


0
投票

它与GitHub一样简单和相同。从浏览器转到Bitbucket存储库并复制URL。在要在其中克隆存储库的所需位置打开终端,然后键入以下内容:

git clone <copied url of repo.>

然后它会询问你的Bitbucket用户名和密码。提供后,您可以克隆它。


0
投票

最好只需要下载,这样你可以使用sourcetree或使用Mercurial来享受克隆,如果你不是cmd类型。

© www.soinside.com 2019 - 2024. All rights reserved.