Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » EGit / JGit » Try to Clone the JGit Repository
Try to Clone the JGit Repository [message #784513] Fri, 27 January 2012 16:38 Go to next message
Stefan Nöbauer is currently offline Stefan NöbauerFriend
Messages: 20
Registered: January 2012
Junior Member
Hi,

since a view hours I cannot access the jgit repo anymore.

I try to clone the repo via EGit plugin:

http://egit.eclipse.org/jgit.git


I get the same error with git.


I get following message:

org.eclipse.core.runtime.CoreException: http://egit.eclipse.org/jgit.git: 503 Service Temporarily Unavailable
at org.eclipse.egit.ui.internal.fetch.FetchOperationUI.execute(FetchOperationUI.java:102)
at org.eclipse.egit.ui.internal.synchronize.SynchronizeFetchJob.run(SynchronizeFetchJob.java:74)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
Caused by: org.eclipse.jgit.errors.TransportException: http://egit.eclipse.org/jgit.git: 503 Service Temporarily Unavailable
at org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:458)
at org.eclipse.jgit.transport.TransportHttp.openFetch(TransportHttp.java:276)
at org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:127)
at org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:113)
at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1062)
at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:129)
at org.eclipse.egit.core.op.FetchOperation.run(FetchOperation.java:128)
at org.eclipse.egit.ui.internal.fetch.FetchOperationUI.execute(FetchOperationUI.java:99)
... 2 more



Re: Try to Clone the JGit Repository [message #784545 is a reply to message #784513] Fri, 27 January 2012 17:22 Go to previous messageGo to next message
Kevin Sawicki is currently offline Kevin SawickiFriend
Messages: 47
Registered: September 2011
Member
It looks like the HTTP url for cloning is currently off during the migration of the Gerrit server.

You should be able to clone using:
git://egit.eclipse.org/jgit.git
though in the interim.
Re: Try to Clone the JGit Repository [message #784708 is a reply to message #784545] Fri, 27 January 2012 22:37 Go to previous messageGo to next message
Matthias Sohn is currently offline Matthias SohnFriend
Messages: 1272
Registered: July 2009
Senior Member
Yes the server is down to migrate the repositories to the new
server as announced on the list, see
http://dev.eclipse.org/mhonarc/lists/jgit-dev/msg01421.html

Read access over git protocol using
git://egit.eclipse.org/jgit.git
should work.
Re: Try to Clone the JGit Repository [message #788286 is a reply to message #784708] Wed, 01 February 2012 15:55 Go to previous messageGo to next message
Stefan Nöbauer is currently offline Stefan NöbauerFriend
Messages: 20
Registered: January 2012
Junior Member
I saw that the new Gerrit Server is up and running.

I changed my Repository settings from git://.... to https://egit.eclipse.org/jgit.git

Is that the right way to change to the new server?

But when I try to fetch from Upstream i get following error:

org.eclipse.core.runtime.CoreException: https://egit.eclipse.org/jgit.git: cannot open git-upload-pack
at org.eclipse.egit.ui.internal.fetch.FetchOperationUI.execute(FetchOperationUI.java:102)
at org.eclipse.egit.ui.internal.fetch.FetchOperationUI$1.run(FetchOperationUI.java:117)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
Caused by: org.eclipse.jgit.errors.TransportException: https://egit.eclipse.org/jgit.git: cannot open git-upload-pack
at org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:466)
at org.eclipse.jgit.transport.TransportHttp.openFetch(TransportHttp.java:276)
at org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:127)
at org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:113)
at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1062)
at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:129)
at org.eclipse.egit.core.op.FetchOperation.run(FetchOperation.java:128)
at org.eclipse.egit.ui.internal.fetch.FetchOperationUI.execute(FetchOperationUI.java:99)
... 2 more
Caused by: java.net.SocketException: Network is unreachable: connect
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(Unknown Source)
at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
at java.net.PlainSocketImpl.connect(Unknown Source)
at java.net.SocksSocketImpl.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.connect(Unknown Source)
at sun.net.NetworkClient.doConnect(Unknown Source)


What am I doing wrong?
Re: Try to Clone the JGit Repository [message #788319 is a reply to message #788286] Wed, 01 February 2012 16:46 Go to previous messageGo to next message
Manuel Doninger is currently offline Manuel DoningerFriend
Messages: 119
Registered: October 2010
Senior Member
The web interface for the new server is at https://git.eclipse.org/r/#/q/status:open,n,z, the new repository url are
git://git.eclipse.org/gitroot/gerrit/jgit.git
ssh://git.eclipse.org/gitroot/gerrit/jgit.git
http://git.eclipse.org/gitroot/gerrit/jgit.git

and

git://git.eclipse.org/gitroot/gerrit/egit.git
ssh://git.eclipse.org/gitroot/gerrit/egit.git
http://git.eclipse.org/gitroot/gerrit/egit.git

You can browse all git repositories at Eclipse with the gitweb interface at https://git.eclipse.org/c/
Re: Try to Clone the JGit Repository [message #788890 is a reply to message #788286] Thu, 02 February 2012 10:41 Go to previous messageGo to next message
Matthias Sohn is currently offline Matthias SohnFriend
Messages: 1272
Registered: July 2009
Senior Member
For HTTP access to the moved Gerrit use
https://git.eclipse.org/r/p/jgit.git

See the updated contributor guide [1] for more details.

[1] http://wiki.eclipse.org/EGit/Contributor_Guide#Logon
Re: Try to Clone the JGit Repository [message #789837 is a reply to message #788890] Fri, 03 February 2012 13:25 Go to previous message
Stefan Nöbauer is currently offline Stefan NöbauerFriend
Messages: 20
Registered: January 2012
Junior Member
Thanx very much
Previous Topic:Synchronize view buttons
Next Topic:How to remove nightly build, it has broken pushes...
Goto Forum:
  


Current Time: Fri Sep 20 19:35:18 GMT 2024

Powered by FUDForum. Page generated in 0.03992 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top