Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jdt-ui-dev] Can't pull anymore

Works for me as well (command line and EGit), and I even pull/fetch via the git protocol like any anonymous user:

[remote "origin"]
        url = "">
        fetch = +refs/heads/*:refs/remotes/origin/*
        fetch = refs/notes/*:refs/notes/*
        pushurl = ssh://mkeller@xxxxxxxxxxxxxxx:29418/jdt/eclipse.jdt.ui.git
        push = HEAD:refs/heads/master

If you don't find anything in Bugzilla, it would be worth opening a new bug for EGit with the stacktrace.

To get your repo going again, you can try to run "git gc" on the command line. That sometimes helps cleaning up local state that got broken somehow.
Otherwise, you may have to re-clone it.

Markus





From:        Daniel Megert/Zurich/IBM@IBMCH
To:        "Eclipse JDT UI developers list." <jdt-ui-dev@xxxxxxxxxxx>
Date:        2017-01-09 17:20
Subject:        Re: [jdt-ui-dev] Can't pull anymore
Sent by:        jdt-ui-dev-bounces@xxxxxxxxxxx




Hi Andrey

As IDE user I use EGit in my IDE, and there pull works just fine. I have this in my config:


[remote "origin"]
       url= ssh://dmegert@xxxxxxxxxxxxxxx/gitroot/jdt/eclipse.jdt.ui.git
       fetch = +refs/heads/*:refs/remotes/origin/*
       fetch = refs/notes/*:refs/notes/*


Dani




From:        
"Andrey Loskutov" <loskutov@xxxxxx>
To:        
jdt-ui-dev@xxxxxxxxxxx
Date:        
09.01.2017 17:10
Subject:        
[jdt-ui-dev] Can't pull anymore
Sent by:        
jdt-ui-dev-bounces@xxxxxxxxxxx




Hi,

Since this year I can't pull from jdt.ui repo (but from jdt.core), git and jgit both throw the errors below.
I'm alone with that? The same setup worked last year and ALL other eclipse.org repositories I have work fine too.

git native on RHEL 7.2:
git pull
fatal: git fetch-pack: expected ACK/NAK, got 'error: Internal server error'
fatal: The remote end hung up unexpectedly

JGit:
org.eclipse.jgit.api.errors.TransportException: Expected ACK/NAK, got: error: Internal server error
               at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:135)
               at org.eclipse.jgit.api.PullCommand.call(PullCommand.java:280)
               at org.eclipse.egit.core.op.PullOperation$1.run(PullOperation.java:200)
               at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2240)
               at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2267)
               at org.eclipse.egit.core.op.PullOperation.execute(PullOperation.java:232)
               at org.eclipse.egit.ui.internal.pull.PullOperationUI.execute(PullOperationUI.java:176)
               at org.eclipse.egit.ui.internal.pull.PullOperationUI.access$0(PullOperationUI.java:168)
               at org.eclipse.egit.ui.internal.pull.PullOperationUI$1.runInWorkspace(PullOperationUI.java:141)
               at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:39)
               at org.eclipse.core.internal.jobs.Worker.run(Worker.java:56)
Caused by: org.eclipse.jgit.errors.TransportException: Expected ACK/NAK, got: error: Internal server error
               at org.eclipse.jgit.transport.BasePackFetchConnection.doFetch(BasePackFetchConnection.java:377)
               at org.eclipse.jgit.transport.TransportHttp$SmartHttpFetchConnection.doFetch(TransportHttp.java:842)
               at org.eclipse.jgit.transport.BasePackFetchConnection.fetch(BasePackFetchConnection.java:308)
               at org.eclipse.jgit.transport.BasePackFetchConnection.fetch(BasePackFetchConnection.java:298)
               at org.eclipse.jgit.transport.FetchProcess.fetchObjects(FetchProcess.java:245)
               at org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:161)
               at org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:122)
               at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1201)
               at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:128)
               ... 10 more
Caused by: org.eclipse.jgit.errors.PackProtocolException: Expected ACK/NAK, got: error: Internal server error
               at org.eclipse.jgit.transport.PacketLineIn.readACK(PacketLineIn.java:126)
               at org.eclipse.jgit.transport.BasePackFetchConnection.negotiate(BasePackFetchConnection.java:586)
               at org.eclipse.jgit.transport.BasePackFetchConnection.doFetch(BasePackFetchConnection.java:363)
               ... 18 more

Kind regards,
Andrey Loskutov

http://google.com/+AndreyLoskutov
_______________________________________________
jdt-ui-dev mailing list
jdt-ui-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit

https://dev.eclipse.org/mailman/listinfo/jdt-ui-dev



_______________________________________________
jdt-ui-dev mailing list
jdt-ui-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jdt-ui-dev



Back to the top