简体   繁体   中英

git terminal show "rebase" next to branch name

I'm very new to git and I don't know how I did it, or why it's showing this on my terminal, but when I open git terminal (from sourcetree) I see the branch name like this:

c:/my/project/folder (develop|REBASE-i 1/13)

What is causing this? And how can I remove this? I remember that before it used to show just the branche name (develop) .

You are in a middle of rebasing so either do

git rebase --continue

or:

git rebase --abort

您可以在 Git 文档中看到有关此问题的信息,但现在您可以Gitbash中运行以下命令

git rebase --abort

Use the below command if you don't have any idea how to proceed.

git rebase --quit

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM