Git分支合并

创建名为test的新分支

git checkout -b test

修改文件,然后提交

git add readme.md
git commit

切换回develop分支

git checkout develop

合并分支

git merge test

提交到远程

git push origin develop
原文地址:https://www.cnblogs.com/sangskf/p/Git-fen-zhi-he-bing.html