0
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.

Please, how do i go about this?

CodeWizard
  • 128,036
  • 21
  • 144
  • 167
DanielTheGeek
  • 183
  • 1
  • 16

2 Answers2

2

Few options:

  1. A temporary reply when they have service issues:

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

  2. You are beyond a proxy

  3. Quota limit as suggested in one of the above links. even due i never encored this one my self even when i passed the quota.


What else can you do?

Verify that you are using the correct SSL configuration:

It should be set to Open SSH unless you using putty.

enter image description here

Community
  • 1
  • 1
CodeWizard
  • 128,036
  • 21
  • 144
  • 167
0

I already found the solution to this problem.

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

setting the proxy host and port number in git.

DanielTheGeek
  • 183
  • 1
  • 16