I am new in Bluemix services. I could not find an exact solution to this problem.
I have a web application on Bluemix and a Git repository on DevOps. I'm working on Eclipse (have Git and Bluemix plugins) and made some changes on the project. Now, I have the last version of the project in Local and Bluemix side and need to update the repository (which is still starter code).
As a first step, I am trying to clone the Git repository (on Eclipse). After I fill the URI and authentication fields, I am getting the error that is shown below. I can pass over SSL error by setting http.sslVerify=false
but cannot solve the others. Thanks.
Error Log:
eclipse.buildId=4.4.2.M20150204-1700
java.version=1.8.0_45
java.vendor=Oracle Corporation
BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=tr_TR
Framework arguments: -product org.eclipse.epp.package.jee.product
Command-line arguments: -os win32 -ws win32 -arch x86_64 -product org.eclipse.epp.package.jee.product
org.eclipse.egit.ui
Error
Thu Apr 23 12:46:33 EEST 2015
https://hub.jazz.net/git/***/***: authentication not supported
org.eclipse.jgit.api.errors.TransportException: https://hub.jazz.net/git/***/***: authentication not supported
at org.eclipse.jgit.api.LsRemoteCommand.execute(LsRemoteCommand.java:223)
at org.eclipse.jgit.api.LsRemoteCommand.call(LsRemoteCommand.java:159)
at org.eclipse.egit.core.op.ListRemoteOperation.run(ListRemoteOperation.java:99)
at org.eclipse.egit.ui.internal.clone.SourceBranchPage$8.run(SourceBranchPage.java:324)
at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122)
Caused by: org.eclipse.jgit.errors.TransportException: https://hub.jazz.net/git/***/***: authentication not supported
at org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:494)
at org.eclipse.jgit.transport.TransportHttp.openFetch(TransportHttp.java:309)
at org.eclipse.jgit.api.LsRemoteCommand.execute(LsRemoteCommand.java:202)
... 4 more
NOTE: After looking the error log, I think it is an authentication based problem. But I am using the same email and password that I use for logging in to Bluemix. By the way, I tried it on Git command line. It is successfully cloned, commited, and pushed. And I do not understand why this problem happens in Eclipse.