把刚写的代码合并到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