ERROR:
fatal: It seems that there is already a rebase-merge directory, and I wonder if you are in the middle of another rebase.
SOLUTION:
1. 查看仓库的当前状态
git status
2. 如果有正在进行中的rebase,可以选择继续或者放弃
git rebase --continue
git rebase --abort
Note:
`git status`: The git status command is used to show the status of changes as untracked, modified, or staged in your Git working directory. It provides a summary of the current state of your repository and helps you understand what changes have been made since the last commit.
网友评论