4

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?

qrest
  • 2,427
  • 1
  • 20
  • 26

3 Answers3

3

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
Mark Tolonen
  • 166,664
  • 26
  • 169
  • 251
1

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.

Martin Geisler
  • 72,968
  • 25
  • 171
  • 229
0
hg qunapp | xargs -I'{}' hg qfold '{}'
asv
  • 181
  • 1
  • 5