0

this is a issue I've been bumping into lately. Eclipse shows > on some of my project files marking them as changed even though they're actually not. Running git status in git bash shows no changes and comparing to a latest revision through eclipse shows no changes too.

What might be a cause for that?

esper
  • 125
  • 1
  • 9

1 Answers1

0

You can see the list of changed files.

Right click on the project > Team > Commit...

In the files section you should see the list of changed files.

Oliver Kranz
  • 3,741
  • 2
  • 26
  • 31
  • yes, but the problem is that these files are not actually changed. if you run git status on your repo it shows that everything is up to date – esper Mar 20 '14 at 09:26
  • Assuming you updated your Eclipse git plugin to the latest version. So that we can be sure it is not a bug in the git plugin. Git can ignore all file mode changes: git config core.fileMode false – Oliver Kranz Mar 20 '14 at 10:20