git 终端在分支名称旁边显示“rebase”

cel*_*ade 7 git

我对 git 很陌生,我不知道我是怎么做到的,也不知道为什么它在我的终端上显示这个,但是当我打开 git 终端(从 sourcetree)时,我看到这样的分支名称:

c:/my/project/folder (develop|REBASE-i 1/13)
Run Code Online (Sandbox Code Playgroud)

是什么原因造成的?我怎样才能删除这个?我记得以前它只显示分支名称(develop)

Gas*_*oin 14

您正处于变基过程中,所以要么这样做

git rebase --continue
Run Code Online (Sandbox Code Playgroud)

或者:

git rebase --abort
Run Code Online (Sandbox Code Playgroud)