git 同步派生分支与源分支代码
1.添加上游源分支仓库作为远程仓库(假设上游仓库的URL是<upstream_repo_url>)
git remote add upstream <upstream_repo_url>
2.获取上游仓库的更新
git fetch upstream
3.切换到你的本地分支(比如dev-devops分支)
git checkout dev-devops
4.合并上游仓库的更新到你的本地分支
git merge upstream/dev-devops
如果一切顺利,你可以推送合并后的更新到你的远程仓库(比如origin)
git push origin dev-devops