zsh提示符显示>;R当前git分支

zsh提示符显示>;R当前git分支,git,zsh,Git,Zsh,我使用了zsh,最近我开始看到这个master>R,而不仅仅是master git状态如下 On branch master Your branch is up-to-date with 'upstream/master'. Last command done (1 command done): edit d36ecbb cfn II No commands remaining. You are currently editing a commit while rebasing branc

我使用了
zsh
,最近我开始看到这个
master>R
,而不仅仅是
master

git状态如下

On branch master
Your branch is up-to-date with 'upstream/master'.
Last command done (1 command done):
   edit d36ecbb cfn II
No commands remaining.
You are currently editing a commit while rebasing branch 'DEV-87' on '7b06369'.
  (use "git commit --amend" to amend the current commit)
  (use "git rebase --continue" once you are satisfied with your changes)

nothing to commit, working directory clean
有什么想法吗?

好吧,根据你的“截图”,看起来你正在重新定基,因此得到了一个
>R
标记


如果要中止rebase,请键入
git-rebase--abort

git-status说明什么?我猜你正处于一个重新开始操作的过程中。就像我猜的那样,你正处于一个重新定位的过程中。您可以使用git-rebase--abort来中止它。下一个问题是,为什么您没有意识到您正在执行重基?Git不是一个可以无所事事地向其发出命令的东西。