📌  相关文章
📜  使当前分支成为 master - Shell-Bash 代码示例

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

代码示例1
git checkout better_branch
git merge --strategy=ours master    # keep the content of this branch, but record a merge
git checkout master
git merge better_branch             # fast-forward master up to the merge