Shenglian / -WORK_TIP

工作上小技巧
4 stars 1 forks source link

[git] 乾跑 git merge #179

Open Shenglian opened 5 years ago

Shenglian commented 5 years ago

git merge some_branch --no-commit --no-ff

--no-ff - 不要使用快轉模式合併,製造小耳朵。

--no-commit - 這個參數會假裝這次的合併失敗,並且不會產生新的 commit,讓使用者有機會可以 在 commit 前再做一些事。

假如在合併過程中,發生意外,使用 git merge --abort || git reset --merge 回到最一開始

Shenglian commented 5 years ago

https://gitbook.tw/posts/2018-07-20-git-merge-dry-run https://gitbook.tw/chapters/branch/merge-commit.html