8

I am getting this error Exception caught during execution of merge command. org.eclipse.jgit.errors.MissingObjectException: Missing unknown d695171025c312b964e49bb2fb05e81a2e38dde2 on Eclipse when i am trying to pull. How to solve this? I am suffering 3 days.

Exception

john2994
  • 393
  • 1
  • 3
  • 15

2 Answers2

6

I fixed this by running

git fetch && git reset --hard
robwill
  • 81
  • 1
  • 4
0

Doing a fetch then hard reset didn't work for me.

I backed up the project, blew it away completely, restarted eclipse, made sure it was gone, restarted eclipse again (because it wasn't gone), cloned it, switched to the branch, did a diff/merge between the two folder structures (backup vs. new clone), then was able to check in my changes.

JoshDM
  • 4,939
  • 7
  • 43
  • 72