创建名为test的新分支
git checkout -b test
修改文件,然后提交
git add readme.md
git commit
切换回develop分支
git checkout develop
合并分支
git merge test
提交到远程
git push origin develop
git checkout -b test
git add readme.md
git commit
git checkout develop
git merge test
git push origin develop