Preso ao tentar desfazer uma rebase

Depois de executar dois comandos Git para desfazer uma rebase, estou com alguns erros.

git checkout topic 
git reset --hard origin/topic

Alguém pode explicar o que é isso e como deve ser resolvido? Não quero perder meu código novamente.

git status me mostra isso

    Last command done (1 command done):
    pick c326b089c8 Revert "Conflicts removed from master, OffscreenCanvas changes ready for merge" Will rebase branch and resolve conflicts. This reverts commit 7357f2e5444bed9e93e1380331464a5332319d09.
   Next command to do (1 remaining command):
   pick 90bec670b4 Changes reverted in conflicting files. OffscreenCanvas API ready to be merged.
  (use "git rebase --edit-todo" to view and edit)
  You are currently editing a commit while rebasing branch 'testing' on '1b0b63edf9'.
  (use "git commit --amend" to amend the current commit)
  (use "git rebase --continue" once you are satisfied with your changes)

  nothing to commit, working tree clean

Desde já, obrigado !

questionAnswers(1)

yourAnswerToTheQuestion