git:分支名称前面的“o”是什么意思?

时间:2017-11-13 11:58:26

标签: git git-branch

当我输入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

.. 可以轻松猜出出错的地方..(换行)

1 个答案:

答案 0 :(得分:3)

这不是git标准行为。我在九年前跟踪了' '命令,除了'*'git branch之外,thennow都没有。

我的猜测是,这来自上一行或您在myApp.service('fileUpload', ['$http', function ($http) { this.uploadFileToUrl = function(file, uploadUrl){ var fd = new FormData(); fd.append('file', file); var info = { "text":"additional info" }; fd.append('data', angular.toJson(info)); $http.post(uploadUrl, fd, { transformRequest: angular.identity, headers: {'Content-Type': undefined} }) .success(function(){ }) .error(function(){ }); } }]); 之上安装的其他工具。