在 Azure Devops 中解决拉取请求中的合并冲突 xcode
Solve merge conflicts in pull request is xcode in Azure Dev ops
我可以看到有。 3 合并冲突是 pull request。
但是当我尝试拉入时 xcode 显示“意外错误”。
有什么方法可以在 dev ops 浏览器或我的 xcode.
中修复它
因为拉取请求 Azure DevOps 端存在合并冲突。
Azure DevOps 确实没有处理合并或提交更改时的冲突的功能。
在提交中,这不是真正的问题,但在拉取请求中,它是,因为 xcode 没有接口来解决这些冲突。
此处的解决方案是为您的组织安装名为 - Pull request merge conflict extension
的扩展
将其安装到您的 Azure DevOps 服务器后,您可以在 Pull Request 页面中看到一个 Conflicts 选项卡,然后您可以在网站中解决冲突,而不是在本地克隆中解决冲突。
Note: There is an known issue that the new changes to master branch after the Pull Request creation will not be recognized by Pull
Request. You need to abandon the current PR then create a new one.
For example, there are two PRs in your repo, feature1 to master and
feature2 to master. After feature1 merged into master, the existing PR
from feature2 to master will not show the feature1’s changes. You need
to abandon it and recreate a new PR. And then you could use the
Conflict extension to resolve merge conflicts.
更多细节你也可以参考jessehouwing的
在这个类似的问题中回答:
我可以看到有。 3 合并冲突是 pull request。 但是当我尝试拉入时 xcode 显示“意外错误”。 有什么方法可以在 dev ops 浏览器或我的 xcode.
中修复它因为拉取请求 Azure DevOps 端存在合并冲突。
Azure DevOps 确实没有处理合并或提交更改时的冲突的功能。
在提交中,这不是真正的问题,但在拉取请求中,它是,因为 xcode 没有接口来解决这些冲突。
此处的解决方案是为您的组织安装名为 - Pull request merge conflict extension
的扩展将其安装到您的 Azure DevOps 服务器后,您可以在 Pull Request 页面中看到一个 Conflicts 选项卡,然后您可以在网站中解决冲突,而不是在本地克隆中解决冲突。
Note: There is an known issue that the new changes to master branch after the Pull Request creation will not be recognized by Pull Request. You need to abandon the current PR then create a new one.
For example, there are two PRs in your repo, feature1 to master and feature2 to master. After feature1 merged into master, the existing PR from feature2 to master will not show the feature1’s changes. You need to abandon it and recreate a new PR. And then you could use the Conflict extension to resolve merge conflicts.
更多细节你也可以参考jessehouwing的
在这个类似的问题中回答: