创建分支:git branch [分支名称] git branch b1
查看分支: git branch -v
切换分支:git checkout b1
给分支添加内容:git add get_tong.txt git commit -m "b1 branch commit1" git branch -v
先要切换到接收合并的分支
git branch -d b1
标签:git,切换,Gitee,Git,b1,branch,运用,分支 From: https://blog.51cto.com/u_15949848/6055554