Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Re-indexing repository loop - not Maven

My Eclipse is continuing crashing a running a loop that saying re-indexing repository [myusername] I think it is because of github but I have unchecked everything that could be causing the problem in eclipse preferences under Maven and GitHub. Can someone please help, my computer keeps heating up and crashing. Thanks

like image 544
Jessica Shu Avatar asked May 01 '13 06:05

Jessica Shu


1 Answers

First alternative: Git only

Disable the Refresh settings under Window -> Preferences -> Team -> Git.

If that works, you will have to manually refresh either the workspace or the repository (in the Git perspective) after changes to the index or the working tree.

Second alternative: Eclipse global

Try disabling both "Refresh..." checkboxes under Window -> Preferences -> General -> Workspace. That will disable Eclipse to receive notifications from the operating system, when files on disk change by processes outside eclipse.

However, if that solves your issue, you will then have to use F5 (Refresh) on parts of your workspace resources manually, if an external process (like Maven, Git, ...) modifies files in your workspace.

like image 113
Bananeweizen Avatar answered Sep 28 '22 09:09

Bananeweizen