-
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
fix
mode. 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
gradlew
command is causing, generally.The results are saved/cached, so if you were to run
git test fix
instead ofgit test run
with the same options, then it would update each commit with the new working copy contents without having to re-run the command.