查看分支 git branch 创建分支 git checkout -b branchName 提交远程分支 git push -u origin branchName 缓存本地仓库 git add . 提交代码 git commit -m "信息" 推送代码 git push 合并master分支 git checkout master git merge branchName
git branch
git checkout -b branchName
git push -u origin branchName
git add .
git commit -m "信息"
git push
git checkout master
git merge branchName