git clone命令不起作用?

时间:2016-12-17 14:21:28

标签: git github bitbucket

我正在尝试克隆比特桶回购。在安装git后执行以下命令后,我面临以下问题:

$ git clone https://usernam@bitbucket.org/username/reponame.git
Error :fatal: unable to access'https://username@bitbucket.org/username/reponame.git/': 
Failed to connect to hostname port 8000: Connection refused

如何通过此错误消息?

2 个答案:

答案 0 :(得分:3)

https网址应尝试联系端口443.

如果尝试联系8000,则可能表示中间代理:检查git config -l|grep -i proxy或您的环境变量(env or set|grep -i proxy

您还可以尝试使用curl -L -v https://usernam@bitbucket.org/username/reponame.git获取更多信息。

最后,如果https不想工作,请不要忘记尝试通过ssh进行克隆:请参阅" Set up SSH for Git"和git clone git@bitbucket.org:user/repo.git

答案 1 :(得分:1)

修改您的网址以使用git或ssh协议进行转移。

e.g。 git clone https://github.com/abcd/bashScripts.git

变为:

git clone git@github.com:abcd/bashScripts.git