1. 程式人生 > >git merge 命令的使用

git merge 命令的使用

file style updating 指定 mas ocs 我們 pan 合並

我們把dev分支的工作成果合並到master分支上:

$ git merge dev
Updating d46f35e..b17d20e
Fast-forward
 readme.txt | 1 +
 1 file changed, 1 insertion(+)

git merge 命令用於合並指定分支到當前分支。

詳見:

Git官網:

https://git-scm.com/docs/git-merge

https://git-scm.com/book/zh/v2/Git-%E5%88%86%E6%94%AF-%E5%88%86%E6%94%AF%E7%9A%84%E6%96%B0%E5%BB%BA%E4%B8%8E%E5%90%88%E5%B9%B6

廖雪峰老師:

https://www.liaoxuefeng.com/wiki/896043488029600/900003767775424

git merge 命令的使用