git merge 简单的操作流程

把刚写的代码合并到B分支

一 先提交自己的代码到A分支
git  add .
git  commit -m ‘提交的备注信息’
git  push 

二 切换到B分支
git  checkout B

三 拉取B分支的代码
git pull

四 把A分支的代码 合并到B
git merge A

五 查看状态
git status
返回>>>(这样的格式就对了,说明有XX个commit ,push一下就好了
On branch master
Your branch is ahead of ‘origin/master’ by XX commits.
  (use “git push” to publish your local commits)
nothing to commit, working tree clean

六 推代码
git push

    原文作者:shylcok
    原文地址: https://blog.csdn.net/shylcok/article/details/122056602
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞