从之前的提交和拆分提交历史记录分支

这个问题在这里已经有了答案:

  • 使用Git 9的答案将最近的提交移到新分支

  • 你可以做一个git checkout some_commit_sha去特定的提交,并通过git checkout -b some_branch_name从提交创建一个分支并转到该分支。

    git checkout -b some_branch commit_2_sha两个放在一起,你可以做git checkout -b some_branch commit_2_sha

    链接地址: http://www.djcxy.com/p/4293.html

    上一篇: branch from previous commit and split commit history

    下一篇: Master is 1 ahead of origin/master