Azure devops GitVersion 任务失败
Azure devops GitVersion task failed
截至本周,我注意到在 azure devops 中创建新存储库时,“master”分支不再存在,而是被“main”分支取代。
当我为新存储库配置管道时,我使用了 GitVersion 任务,我一直使用该任务在 azure devops 中对我的工件进行版本控制,但由于进行了此更改,我收到以下错误:
System.InvalidOperationException: Could not find a 'develop' or
'master' branch, neither locally nor remotely.
有人知道我怎么解决这个问题吗?
非常感谢您的支持。
是的,git 生态系统中的许多工具或服务正在远离 'master' 作为默认分支:
https://devblogs.microsoft.com/devops/azure-repos-default-branch-name/
实际上没有任何 GitVersion 版本支持这个新的分支名称。
见https://github.com/GitTools/GitVersion/issues/2433
有修复https://github.com/GitTools/GitVersion/pull/2367
所以你有两种可能性:
切换回 'master' 分支(参见上面第一个 link 中要在 Azure Devops 中设置的设置),您将不得不自己重命名分支。
在等待发布修复程序的同时更新 GitVersion 配置。参见 https://github.com/GitTools/GitVersion/issues/2433#issuecomment-725586659
截至本周,我注意到在 azure devops 中创建新存储库时,“master”分支不再存在,而是被“main”分支取代。
当我为新存储库配置管道时,我使用了 GitVersion 任务,我一直使用该任务在 azure devops 中对我的工件进行版本控制,但由于进行了此更改,我收到以下错误:
System.InvalidOperationException: Could not find a 'develop' or 'master' branch, neither locally nor remotely.
有人知道我怎么解决这个问题吗?
非常感谢您的支持。
是的,git 生态系统中的许多工具或服务正在远离 'master' 作为默认分支: https://devblogs.microsoft.com/devops/azure-repos-default-branch-name/
实际上没有任何 GitVersion 版本支持这个新的分支名称。
见https://github.com/GitTools/GitVersion/issues/2433
有修复https://github.com/GitTools/GitVersion/pull/2367
所以你有两种可能性:
切换回 'master' 分支(参见上面第一个 link 中要在 Azure Devops 中设置的设置),您将不得不自己重命名分支。
在等待发布修复程序的同时更新 GitVersion 配置。参见 https://github.com/GitTools/GitVersion/issues/2433#issuecomment-725586659