2

我是 GitHub 的新手,但我按照以下步骤创建了一个 repo:

$ mkdir fb
$ cd fb 
$ git init 
$ git add README 
$ git commit -m 'first commit'
$ git push origin master

现在,当我尝试进行第一次提交时,出现以下错误:

$ git push origin master
error: Cannot access URL https://github.com/xxx/yyy/, return code 60
error: failed to push some refs to 'https://github.com/xxx/yyy'

我正在使用最新的 git 版本。为什么 GitHub 会抛出这个异常错误,我该如何解决?

4

2 回答 2

4

如果您尝试在 git 存储库中使用 SSH 协议,例如git@github.com:xxx/yyy.git,看看这是否适合您,会怎样?

$ git remote rm origin

$ git remote add origin git@github.com:xxx/yyy.git

于 2012-09-17T15:57:39.550 回答
-1

我相信返回错误代码与 SSL 证书有关……很抱歉,我无法提供进一步的帮助。

于 2012-09-17T14:50:05.627 回答