多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] ## 概述 - 将两个或两个以上的开发历史加入(合并)一起 ## 语法 ``` git merge [-n] [--stat] [--no-commit] [--squash] [--[no-]edit] [-s <strategy>] [-X <strategy-option>] [-S[<keyid>]] [--[no-]allow-unrelated-histories] [--[no-]rerere-autoupdate] [-m <msg>] [<commit>…​] git merge --abort git merge --continue ``` ## 场景 ### 合并到当前分支 ``` > git merge dev ``` ### 合并单枪分支 ``` C - D - E bugfix / A - B master after A - B - C - D - E master/bugfix ``` 执行 ``` git merge --ff bugfix ```