赞
踩
1.切换到主分支(master)
git checkout master
2.拉取远程仓库代码
git pull
3.切换回自己的分支
git checkout 分支名称
4.把主分支的代码合并到自己的分支上
git merge master
5.把代码上传到远程仓库自己分支上
git push
首先需要切换到主分支
git merge --no-ff 自己分支的名字
git commit -m "合并分支代码"
git push
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。