Mercurial qfold 所有补丁?

发布于 2024-09-19 19:14:22 字数 144 浏览 3 评论 0原文

结果发现没有hg qfold -a

我尝试了 hg qfold $(hg qunapp)hg qunapp | xargs hg qfold 但无法让它工作。有什么想法吗?

Turns out there is no hg qfold -a.

I tried hg qfold $(hg qunapp) and hg qunapp | xargs hg qfold but couldn't get it to work. Any ideas?

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

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

发布评论

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

评论(3

逆光飞翔i 2024-09-26 19:14:22

通过您的 xargs 方法,您是否还记得 qfold 只将未应用补丁折叠到已应用补丁中?这对我(Windows)有用,将所有补丁折叠到第一个补丁中:

hg qpop -a    # remove all patches
hg qpush      # apply first one
for /f %i in ('hg qunapplied') do hg qfold %i  # fold remaining patches

With your xargs approach, did you remember that qfold only folds unapplied patches into an applied patch? This worked for me (Windows) to fold all patches into the first patch:

hg qpop -a    # remove all patches
hg qpush      # apply first one
for /f %i in ('hg qunapplied') do hg qfold %i  # fold remaining patches
趁微风不噪 2024-09-26 19:14:22

嗯...我们可以添加一个 -a 标志...但在我们这样做之前,我会使用 histedit折叠 扩展,或者也许自己做:

$ hg update qparent
$ hg revert --all --rev qtip
$ hg commit -m 'Everything in one commit'
$ hg qpop -a

然后您需要删除补丁 - 也许您可以完全删除 .hg/patches ,或者您可以删除其中一些补丁并编辑 .hg/patches/series匹配。

Hmm... we could add a -a flag... But until we do, I would use the histedit or collapse extensions or maybe just do it myself:

$ hg update qparent
$ hg revert --all --rev qtip
$ hg commit -m 'Everything in one commit'
$ hg qpop -a

You then need to remove the patches -- perhaps you can just remove .hg/patches entirely, or you can delete some of them and edit .hg/patches/series to match.

逆流 2024-09-26 19:14:22
hg qunapp | xargs -I'{}' hg qfold '{}'
hg qunapp | xargs -I'{}' hg qfold '{}'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文