因为我使用的是Gitflow,所以我所有的分支都包含一个斜杠。比如“feature/awesome-feature”。当我试图告诉Jenkins构建这个分支时,它抛出错误"ERROR: Couldn't find any revision to build. Verify the repository and branch configuration for this job."是否可以在分支名称中使用“/”?这个问题被报告/修复/未修复了很多次。所以我不确定目前的状态。
"ERROR: Couldn't find any revision to build. Verify the repository and branch configuration for this job."
z4bn682m1#
是的,我一直在构建这样的分支,它工作得很好。将你的分支设置为“refs/heads/feature/awesome-feature”你在看哪个版本的Jenkins?我在1.580.3你有提交了吗?如果你的repo是空的,它就没有HEAD,因此也就没有分支,就像下面这个问题:While building a git project from jenkins it shows an error like couldn't find any revision to build
dohp0rv52#
在分支名称中添加前缀“origin/”对我来说很有效。
origin/feature/mybranch
字符串
2条答案
按热度按时间z4bn682m1#
是的,我一直在构建这样的分支,它工作得很好。
将你的分支设置为“refs/heads/feature/awesome-feature”
你在看哪个版本的Jenkins?
我在1.580.3
你有提交了吗?如果你的repo是空的,它就没有HEAD,因此也就没有分支,就像下面这个问题:While building a git project from jenkins it shows an error like couldn't find any revision to build
dohp0rv52#
在分支名称中添加前缀“origin/”对我来说很有效。
字符串