从BitBucket下载Git仓库

时间:2012-06-06 03:38:19

标签: git download bitbucket

我只是下载Git bash,现在我想从Bitbucket下载一个存储库。 我有用户名和密码。

当我尝试:

$ git clone https://xxxxx@bitbucket.org/xxxx/xxxxx.git

我明白了:

Cloning into 'xxxx'...

fatal:https://xxxxx@bitbucket.org/xxxx/xxxxx/info/refs not found did you git
 update server-info on the server ?

4 个答案:

答案 0 :(得分:45)

在bitbucket中创建存储库时,用户界面会显示您需要的确切克隆命令:

capture of clone help

因此,您的克隆命令需要是:

的https:// <强> usersname @ bitbucket.org /的用户名 /reponame.git

答案 1 :(得分:9)

你也可以使用ssh进行克隆,这允许使用ssh密钥设置无密码推拉。

git clone git@bitbucket.org:username/reponame.git

答案 2 :(得分:6)

Bitbucket 可能会使用 Mercurial 。你真的克隆了一个 git 存储库吗?我通过克隆 hg ; - )

解决了同样的问题

答案 3 :(得分:3)

bitbucket上的界面已经改变,所以寻找正确命令的人可以在左侧找到它&#34;动作&#34; - &gt;&#34;克隆&#34;并且您将看到已编码为https的命令。它有效。