-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
| 
         Hi @badp, this is specific to the  You can ignore it if it's not relevant to you. But you might want to consider either committing or ignoring whatever unstaged changes the  The results are saved/cached, so if you were to run   | 
  
Beta Was this translation helpful? Give feedback.

Hi @badp, this is specific to the
fixmode. It indicates that the command left unstaged changes in the working copy. This is more useful for formatters and linters with autofixes, which are supposed to modify the working copy.You can ignore it if it's not relevant to you. But you might want to consider either committing or ignoring whatever unstaged changes the
gradlewcommand is causing, generally.The results are saved/cached, so if you were to run
git test fixinstead ofgit test runwith the same options, then it would update each commit with the new working copy contents without having to re-run the command.