прервет операцию rebase и вернет ваш репозиторий в его состояние перед началом rebase. Все, что вы сделали с тех пор, как начали перебазирование, будет потеряно.

выполнения двух команд Git, чтобы отменить ребазинг, я застрял с некоторыми ошибками.

git checkout topic 
git reset --hard origin/topic

Может кто-нибудь объяснить, что это такое и как это решить? Я не хочу снова терять свой код.

git status показывает мне это

    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

Заранее спасибо !

Ответы на вопрос(1)

Ваш ответ на вопрос