我在VSTS有2个分支机构用于回购。 feature1和master
我有一个命令行任务来运行git cherry命令。
运行构建后,我在Git的命令行任务中收到以下错误。
在构建public void validate(String input) {
String data = JsonPath.parse(input).read(target);
if (data == null) {
throw new ValidationException("Target: " + target + " is NULL");
}
Matcher matcher = rule.matcher(data);
if (!matcher.matches()) {
throw new ValidationException("Target: " + target + " does not match the pattern: " + pattern);
}
}
分支之前,我想检查它是否具有feature1
分支的所有更改并完成此操作我想运行git cherry命令。
我的组织下的服务器上有托管的VSTS代理。屏幕看起来像
请告诉我如何实现这一目标。谢谢!