Mercurial Repository 有构建管理工具吗?

发布于 2024-08-13 01:22:55 字数 50 浏览 2 评论 0原文

我想知道 Mercurial 是否提供任何内置的 BUILD 工具来构建/打包源代码。

I would like to know if mercurial provides any in built BUILD tool for building/packaging the source code.

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

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

发布评论

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

评论(1

明月夜 2024-08-20 01:22:55

hg archive 程序可以创建存储库源代码的存档(减去所有 Mercurial 元数据和未跟踪的文件)。例如,要创建 tarball:

$ hg archive --prefix=myproject/ --type=tgz ~/myproject.tgz

请参阅 hg help archive 了解有关用法和可能选项的更多信息。

The hg archive program can create an archive of your repo's source code (minus all the Mercurial metadata and untracked files). For example, to create a tarball:

$ hg archive --prefix=myproject/ --type=tgz ~/myproject.tgz

See hg help archive for more information on usage and possible options.

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