During rebase, git status listed some files in three categories: "Changes to be committed", "Unmerged paths" and "Changes not staged for commit".
After git add .
, All files from "Unmerged paths" were moved to "Changes to be committed".
How can I move them back, so my merge tool can recognize them and help me resolve?
Note: "git update-index --unresolve" seems to be intended for that, according to this answer, but it's giving me Not in the middle of a merge.
(apparently because a rebase is treated differently).