1、查看所有分支
git branch -a
2、查看当前分支
git branch
3、新建一个分支
git branch feature-xx
4、切换到新建分支上面
git checkout feature-xx
5、提交代码到本地缓存区
git add .
6、添加提交的代码备注
git commit -m "备注内容"
7、推送提交的代码到远程新建的分支上面
git push origin feature-xx
原文:https://www.cnblogs.com/wangshengli520/p/12883600.html