注意到Node的Repo里面,每一个PR都被Close了然后由Owner自己再开PR一起合并,这时在Log里显示的是A Commited with B
,就是原来开PR的那个贡献者也会显示在上边。
这其中经过了怎样的操作呢?
换言之,我应该怎样实现近似的流程?
一个commit的parent和这个commit本身是怎样的关系呢?
抱歉几个问题合在一起了
[edit]:
感觉parent commit有点像是这个commit之前的那个commit?
大家讲道理2017-04-17 13:02:49
I once handled a process on a project, and there were many commits on another branch. Then when merging to the master line, due to some very frustrating reasons, the boss asked not to merge directly, but only based on commits. merge. Then I used cherry pick, and then commit with appeared.
I don’t know if there is a reason why I encountered it in node’s repo