【コンフリクトのなぜ!】No changes - did you forget to use 'git add'?

なにこのエラー!No changes - did you forget to use 'git add'?

rebaseをして、コンフリクトが出たので直していたら、こういうエラーに遭遇した。

No changes - did you forget to use 'git add'?
If there is nothing left to stage, chances are that something else
already introduced the same changes; you might want to skip this patch.

ちゃんとコンフリクト解消してaddもしたのに。

これは「もうコンフリクトしてたとこなくなっちゃいました!」みたいなことらしい。

git rebase --skip

なので、

git rebase --skip

ってしてあげると、いつの間にかrebase作業は終了し、 元のブランチに戻ってきました。

ふーむ。