赞
踩
本文介绍一下如何将git上面的代码合并。
一、把分支代码合并到master
git checkout hello
git pull
git checkout master
git merge hello
git push
二、把master分支代码合并到自己的分支
master分支的代码领先自己的分支,git 如何把master分支代码合并到自己的分支呢?
git checkout master
git pull
git checkout xxx(自己的分支)
git merge master
git push origin 自己分支名
Git知识点及常用命令介绍参考之前的文章:https://blog.csdn.net/weixin_64124795/article/details/129900448
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。