Jenkins的SCM Command是如何生成的

发布于 2024-11-28 04:33:32 字数 690 浏览 0 评论 0 原文

我有 Mercurial 存储库,通过向 Jenkins 提供 URL,我在 stdout 中得到以下内容:

Started by an SCM change
[workspace] $ hg incoming --quiet --bundle hg.bundle --template "{desc|xmlescape}{file_adds|stringify|xmlescape}{file_dels|stringify|xmlescape}{files|stringify|xmlescape}{parents}\n" --rev default
[workspace] $ hg unbundle hg.bundle
adding changesets
adding manifests
adding file changes
added 1 changesets with 1 changes to 1 files
(run 'hg update' to get a working copy)
[workspace] $ hg update --clean --rev default
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
[workspace] $ hg log --rev . --template {node}
No emails were triggered.

问题是这些命令是如何生成的以及可以修改吗?

I have mercurial repository, and by providing the URL to Jenkins, i get the following in stdout:

Started by an SCM change
[workspace] $ hg incoming --quiet --bundle hg.bundle --template "{desc|xmlescape}{file_adds|stringify|xmlescape}{file_dels|stringify|xmlescape}{files|stringify|xmlescape}{parents}\n" --rev default
[workspace] $ hg unbundle hg.bundle
adding changesets
adding manifests
adding file changes
added 1 changesets with 1 changes to 1 files
(run 'hg update' to get a working copy)
[workspace] $ hg update --clean --rev default
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
[workspace] $ hg log --rev . --template {node}
No emails were triggered.

Question is HOW are these commands generated and can they be modified ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抚你发端 2024-12-05 04:33:32

这些命令是 Mercurial Jenkins 插件 的一部分,带有 源代码位于 GitHub

您可以在 hudson.plugins.mercurial.MercurialSCM.java 类href="https://github.com/jenkinsci/mercurial-plugin/blob/master/src/main/java/hudson/plugins/mercurial/MercurialSCM.java#L428" rel="nofollow">更新( )方法。

os.write("<changesets>\n".getBytes());
ArgumentListBuilder args = findHgExe(build, listener, false);
args.add(forest ? "fincoming" : "incoming", "--quiet");
if (!forest) {
    args.add("--bundle", "hg.bundle");
}

args.add("--template", MercurialChangeSet.CHANGELOG_TEMPLATE);

args.add("--rev", getBranch(env));

Those commands are part of the Mercurial Jenkins plugin, with the source code available at GitHub.

You can find the incoming command used in the hudson.plugins.mercurial.MercurialSCM.java class in the update() method.

os.write("<changesets>\n".getBytes());
ArgumentListBuilder args = findHgExe(build, listener, false);
args.add(forest ? "fincoming" : "incoming", "--quiet");
if (!forest) {
    args.add("--bundle", "hg.bundle");
}

args.add("--template", MercurialChangeSet.CHANGELOG_TEMPLATE);

args.add("--rev", getBranch(env));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文