git合并相关操作
// 当前在自己的开发分支上 eg:202301/feature/lh/de-crowtest-2326 // 切换到master分支 git checkout master // 拉master最新代码 git pull // 查找2326相关分支 // 两个结果 本地:202301/feature/lh/de-crowtest-2326 远端(沙盒等):remotes/origin/202301/feature/lh/de-crowtest-2326
git branch -a | grep 2326 // 以远端2326为准,将master代码合并到远端 --no-ff 禁止快进式合并 如有冲突 解决冲突 git merge --no-ff remotes/origin/202301/feature/lh/de-crowtest-2326 // 合并master git push git push origin HEAD:refs/for/master // 本地新建分支,并关联远端的沙盒分支 git checkout -b sandbox origin/sandbox
参考:Git 从入门到精通
发表评论 取消回复