Eclipse EGit and git show a different status on the command line

In my git repository, I can make git status, and it tells me that everything is up to date:

[598] : git status
# On branch master
nothing to commit (working directory clean)

If I connect to the repository using EGit and synchronize in Eclipse, I get:

enter image description here

Somehow EGit believes that many files were deleted and recorded with the same name. Since git status does not return anything to commit, I expect to get an empty window here.

For completeness: this is on OSX 10.7, but I also saw the same problem in Window 7 Pro.

Any ideas what is going on here?

+3
source share
1 answer

Here you are using a non-7-bit character (umlaut o). Sorry, this is known to cause problems.

utf8. , .

git egit .

+3

All Articles