Git创建与合并分支
Posted linzedian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git创建与合并分支相关的知识,希望对你有一定的参考价值。
-
查看分支:git branch
-
创建分支:git branch
-
切换分支:git checkout
或者git switch -
创建+切换分支:git checkout -b
或者git switch -c -
合并某分支到当前分支:git merge
-
删除分支:git branch -d
以上是关于Git创建与合并分支的主要内容,如果未能解决你的问题,请参考以下文章