使用Azure DevOps,有一个repo,其中有效代码在辅助分支中维护。但是,主分支已过期多年。
我想删除master的内容并用辅助分支的内容覆盖它。
我理解错误处理这会导致严重的命名空间问题,我想避免这种情况。
在Azure DevOps中使用辅助分支完全替换master时,您会建议使用什么方法?
git clone {repo url}
git checkout {secondary branch}
Ctrl+A
,Ctrl+C
。git checkout master
Ctrl+V
。git add .
git commit -m "update master"
git push
现在master
分支更新了secondary branch
的内容。