Friday, June 23, 2017

eclipse warning: An internal error occurred during: "Computing Git status for repository MiniTools". Unexpected internal error near index ...



>PROBLEM

Any change in the project caused the following message:
  An internal error occurred during: "Computing Git status for repository MiniTools".
  Unexpected internal error near index 8
  \target\

>SOLUTION
The error comes from the backslashed used in .ignore file.
Switch the backslashes to slashes.
WRONG: \target\
RIGHT: /target/

>ENV
Git
Eclipse Mars
Windows




No comments:

Post a Comment

eclipse: java: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder" or Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder

  >PROBLEM Using Eclipse, you try to run a simple logging test using "org.slf4j.Logger" like the sample below: package Test; im...