git 分支新建与合并

如果博客有错误的地方,感谢不吝指出,避免给各位造成损失

新建分支

https://blog.csdn.net/qq_40374604/article/details/107379869

合并分支

合并 iss53 分支到 master 分支,这和之前你合并 hotfix 分支所做的工作差不多。

$ git checkout master
Switched to branch 'master'
$ git merge iss53
Merge made by the 'recursive' strategy.
index.html |    1 +
1 file changed, 1 insertion(+)

更多复杂合并 参考: https://git-scm.com/book/zh/v2

你可能感兴趣的:(git)