1.先切换到主分支(master)
git checkout master
2.拉取远程仓库的代码(保证代码是最新的)
git pull
3.切换到需要合并的分支
git checkout 分支名
4.将主分支中的代码merge到需要合并的分支中
git merge master
5.使用上传命令push上去
git push origin 分支名
1.先切换到主分支(master)
git checkout master
2.拉取远程仓库的代码(保证代码是最新的)
git pull
3.切换到需要合并的分支
git checkout 分支名
4.将主分支中的代码merge到需要合并的分支中
git merge master
5.使用上传命令push上去
git push origin 分支名