master就是系统默认创建的分支
-
creating branch : git branch branch-name
-
switching branch: git checkout branch-name
-
showing branch: git branch
-
creating and switching branch: git checkout -b branch-name
-
fast forward merging another branch into current baranch:git merge branch-name
tip: When the two branch both have new commit,
-
deleting a branch: git branch -d branch-name
本文详细介绍如何使用Git进行分支管理,包括创建、切换、合并及删除分支等操作,为用户提供了一个全面的Git分支工作流程指导。
530

被折叠的 条评论
为什么被折叠?



