Reputation: 11
When I change something in my repository I see some "Unstaged Changes" in Eclipse, but when I use git at the same time, it tells me that there are not any updates in my repository. Why is that? Should I change or configure something to see changes at the same time? Or is that normal behavior?
Upvotes: 1
Views: 6292
Reputation: 1
This will remove the local changes and you will no longer see the unwanted unstaged changes during git staging.
Upvotes: 0
Reputation: 2250
This can happen if any of the files are inadvertently checked in with a character case inconsistencies in the path.
You might need to do something like:
git mv Path/file.c path/file.c
Upvotes: 0
Reputation: 778
It happens to me many times, apparently there is a bug on git client in Eclipse
What do i do, and helped me:
Try to stage the files and then unstage them via Eclipse
after that those files disappear form the unstaged area in Eclipse.
Upvotes: 1