1.查看当前分支 git branch 2. 创建新分支test git checkout -b test 3. 将所有文件添加到暂存区 git add . 4. 将所有代码提交到本地仓库 git commit -m '更新提交' 5. 查看项目当前状态 git status 6. 新建远程仓库test,并将本地分支推送到远程仓库 git push -u origin test 7. 切换到master分支 git checkout master 8. 在master分支进行代码合并 git merge test 9. 将本地分支推送到远程仓库 git push