git:分支名称前的"o"是什么意思?

git: what does "o" mean in front of a branch name?

当我输入 git branch -avv 时,我得到类似

的结果
git branch -avv
  some/branchname       9ff9335af Some nice description
o release/v3.0
  some/branchname       a12b3hg1f Some description
* release/v3.0          813f74adc Some detailed description
...

所以 release/v3.0 出现了两次,其中一次以 o 为前缀。我在 documentation 中没有找到任何内容 - 这是什么意思?

更新:

我上面的缩写列表具有误导性 - 应该类似于

git branch -avv
  some/branchname       9ff9335af merged branch abc/def t
o release/v3.0

.. 您 可以 轻松猜出哪里出了问题..(换行符)

这不是 git 标准行为。九年前我跟踪了 git branch 命令,then nor now 除了 ' ''*'.

之外没有其他任何东西

我的猜测是这来自上一行或您在 git branch 之上安装的其他工具。