如何创建我的 Mercurial 存储库的 zip 以便发布?
作为我的发布过程的一部分,我想创建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
hg archive
:它还使用标准
-r
选项来存档除提示之外的修订版本。Use
hg archive
:It also takes the standard
-r
option to archive a revision other than the tip.hg archive
怎么样?How about
hg archive
?