https://learngitbranching.js.org/?locale=zh_CN
高级话题的第一题
合并多个分支成一条线,答案是这样的
$ git rebase main bugFix
$ git rebase bugFix side
$ git rebase side another
$ git rebase another main
和下面有区别吗,提示通过了
$ git rebase c2 c3
$ git rebase c3' c6
$ git rebase c6' c7
$ git rebase c7' main


