初始化本地仓库
c
git init
链接远程仓库
c
git remote add origin 'https://gitee.com/xxxxxxxxxxx'
提交本地代码(进行commit提交)
c
git add .
git commit -m "分支名"
创建分支
c
git branch 分支名
选择刚刚创建的分支
c
git checkout 分支名
查看所选中的分支
c
git branch -a
提交分支代码
c
git push origin 分支名