I'm currently mergin two branches using git rebase -i, There is a commit that is not letting me continue with the rebase. When I check the commit I see that there are some files but nothing is conflicting with the branch.
I tried using the fixup and edit because I thought maybe I had made some changes, however this is not the case. When I run git rebase --continue I get the following message:
error: The following untracked working tree files would be overwritten by merge:
It also shows files as shown in the image above with the following message
Please move or remove them before you merge.
Aborting
hint: Could not execute the todo command
hint:
hint: pick 430847f3fe3f80162a93f62db3e016f3c9a97cc1 Include html2text package
hint:
hint: It has been rescheduled; To edit the command before continuing, please
hint: edit the todo list first:
hint:
hint: git rebase --edit-todo
hint: git rebase --continue
What can I do in this case? Does this mean, I can rebase this commit? Do I have to abort?
