尝试从构建于集成分支const reducedArray = arr.reduce((acc, next) => { // acc stands for accumulator
const lastItemIndex = acc.length -1;
const accHasContent = acc.length >= 1;
if(accHasContent && acc[lastItemIndex].consumed_date == next.consumed_date) {
acc[lastItemIndex].calories += next.calories;
} else {
// first time seeing this entry. add it!
acc[lastItemIndex +1] = next;
}
return acc;
}, []);
console.log(reducedArray)
,master
,maint
和next
之上的手册页gitworkflows(7)
中掌握Git工作流程。我不明白如何解决可能出现的合并冲突,例如维护者试图将来自不同贡献者的补丁合并到分支pu
中,如果这些补丁基于分支next
和维护者到目前为止,他们都没有晋升为master
。
有人知道我上面问题的答案吗?
答案 0 :(得分:0)
实际上,在Merge workflow部分的手册页本身上已经回答了这个问题:
有时,维护者在尝试时可能会遇到合并冲突 从下游拉出变化。 在这种情况下,他可以向下游询问 做合并并自己解决冲突(也许他们会 更了解如何解决它们。这是少见的情况之一 下游应从上游合并。
(强调我的,经常强调他们的)