Mercurial Repository 有构建管理工具吗?
我想知道 Mercurial 是否提供任何内置的 BUILD 工具来构建/打包源代码。
I would like to know if mercurial provides any in built BUILD tool for building/packaging the source code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
hg archive
程序可以创建存储库源代码的存档(减去所有 Mercurial 元数据和未跟踪的文件)。例如,要创建 tarball:请参阅
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:See
hg help archive
for more information on usage and possible options.