📌  相关文章
📜  如何将主更改移动到分支 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:57.748000             🧑  作者: Mango

代码示例1
git checkout -b newfeat master
git rebase --onto working-branch origin/master newfeat
git checkout master
git reset --hard origin/master

At this point you have:
*master pointing to the last pushed commit (origin/master)
*working-branch never changed
*a new newfeat branch that contains all the new commits and is ahead of working-branch.