The most recent beta release changes the default branch regexes in a way that prevents them from matching remote branches if GitVersion can't find the parent.
|
var chosenBranch = repository.Branches.FirstOrDefault(b => Regex.IsMatch(b.FriendlyName, developBranchRegex, RegexOptions.IgnoreCase) |
The use of Branch.FriendlyName with the default master regex of ^master$ means that it will never match a remote branch.
see also
#1410