Git分支合并

创建名为test的新分支

git checkout -b test

修改文件,然后提交

git add readme.md
git commit

切换回develop分支

git checkout develop

合并分支

git merge test

提交到远程

git push origin develop
posted @ 2020-12-01 19:18  愿做你的小叮当  阅读(60)  评论(0编辑  收藏  举报