本文介绍一下如何将git上面的代码合并。
一、把分支代码合并到master
- 首先切换到分支hello ;
git checkout hello
- 使用git pull 把分支代码pull下来;
git pull
- 切换到主分支;
git checkout master
- 把分支的代码merge到主分支;
git merge hello
- git push推上去就完成了,现在你就把自己分支的代码就合并到主分支上了。
git push
同样的,主分支的代码也可以合并到其他分支上。
二、把master分支代码合并到自己的分支
master分支的代码领先自己的分支,git 如何把master分支代码合并到自己的分支呢?
- 首先切换到主分支
git checkout master
- 使用git pull 把领先的主分支代码pull下来
git pull
3.切换到自己的分支git checkout xxx(自己的分支)
- 把主分支的代码merge到自己的分支
git merge master
git push推上去ok完成,现在 你自己分支的代码就和主分支的代码一样了git push origin 自己分支名
Git知识点及常用命令介绍参考之前的文章:https://blog.csdn.net/weixin_64124795/article/details/129900448