如何创建我的 Mercurial 存储库的 zip 以便发布?

发布于 2024-09-12 08:20:20 字数 175 浏览 2 评论 0原文

作为我的发布过程的一部分,我想创建一个 zip 文件,该文件基本上是该特定发布时 hg 工作目录的转储。以自动化方式执行此操作的最简单方法是什么?

顺便说一句,如果我简单地“zip -r proj.zip”,zip 将包含各种我不想要的东西——比如编译文件、emacs 自动备份,以及,是的,.hg 目录本身......

As part of my release process, I want to create a zip file that is basically a dump of the hg working dir at the time of that particular release. What's the easiest way to do this in an automated way?

BTW, if I simply "zip -r proj.zip" the zip will contain all sorts of things I don't want -- like compiled files, emacs auto-backups, and, yes, the .hg directory itself...

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

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

发布评论

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

评论(2

眼泪淡了忧伤 2024-09-19 08:20:20

使用hg archive

hg archive -t zip /destination/path/zipfile.zip

它还使用标准-r选项来存档除提示之外的修订版本。

Use hg archive:

hg archive -t zip /destination/path/zipfile.zip

It also takes the standard -r option to archive a revision other than the tip.

星星的軌跡 2024-09-19 08:20:20

hg archive 怎么样?

How about hg archive?

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