Jenkins构建包含“/”的分支失败

g6ll5ycj  于 12个月前  发布在  Jenkins
关注(0)|答案(2)|浏览(143)

因为我使用的是Gitflow,所以我所有的分支都包含一个斜杠。比如“feature/awesome-feature”。
当我试图告诉Jenkins构建这个分支时,它抛出错误"ERROR: Couldn't find any revision to build. Verify the repository and branch configuration for this job."
是否可以在分支名称中使用“/”?这个问题被报告/修复/未修复了很多次。所以我不确定目前的状态。

z4bn682m

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

dohp0rv5

dohp0rv52#

在分支名称中添加前缀“origin/”对我来说很有效。

origin/feature/mybranch

字符串

相关问题