标签:comm out ranch style code branch git push 新建 管理
1.切换到基础分支,如主干
git checkout master
2.创建并切换到新分支demo
git checkout -b demo
3.git branch查看已经在demo分支
4.更新分支代码并提交
git add *
git commit -m "demo"
git push origin demo
5.git代码管理界面能看到新提交的分支
标签:comm out ranch style code branch git push 新建 管理
原文地址:https://www.cnblogs.com/janet11/p/12460555.html