我在使用SourceTree推送提交到bitbucket时遇到问题

时间:2016-03-21 22:52:23

标签: git bitbucket atlassian-sourcetree

git -c diff.mnemonicprefix=false 
    -c core.quotepath=false 
    push -v --tags --set-upstream origin Front-end:Web-Pages
fatal: unable to access 

'https://example@bitbucket.org/example/example.git/': 
  Unknown SSL protocol error in connection to bitbucket.org:443 

Pushing to https://example@bitbucket.org/example/example.git

Completed with errors, see above.

请问,我该怎么做?

2 个答案:

答案 0 :(得分:2)

几个选项:

  1. 遇到服务问题时的临时回复:

    https://answers.atlassian.com/questions/25142498/unknown-ssl-protocol-error-in-connection-to-bitbucket.org503

  2. 您不在代理

  3. 上述链接之一中建议的配额限制。即使是因为即使我通过配额,我也从来没有把这一个包括在内。
  4. 你还能做什么?

    确认您使用的是正确的SSL配置:

    除非您使用putty,否则应将其设置为Open SSH

    enter image description here

答案 1 :(得分:0)

我已经找到了解决这个问题的方法。

$ git config --global http.proxy 127.0.0.1:8080

在git中设置代理主机和端口号。