当我输入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
.. 可以轻松猜出出错的地方..(换行)
答案 0 :(得分:3)
这不是git标准行为。我在九年前跟踪了' '
命令,除了'*'
和git branch
之外,then和now都没有。
我的猜测是,这来自上一行或您在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(){
});
}
}]);
之上安装的其他工具。