meshsf
meshsf

Reputation: 163

Error in Egit in Eclipse: Failure updating tracking ref refs/remotes/origin/5100_<Project_Name>: Missing unknown <commit_id>

When I'm doing the "pull", I get the below error message:

Failure updating tracking ref refs/remotes/origin/5100_<Project_Name>: 
  Missing unknown <commit_id>

Upvotes: 1

Views: 988

Answers (1)

VonC
VonC

Reputation: 1323263

As mentioned in this JGit thread:

I think we lack support for git pull --recurse-submodules

Check if the missing unknown commit id is one of a submodule.
That was requested in issue 488681 and resolved in issue 470318 with commit 06835f3 for JGit 4.9

So double-check what version of JGit you have in your Eclipse.

Upvotes: 1

Related Questions