5 Feb
2020
5 Feb
'20
1:45 p.m.
I usually just use patchbomb to submit patches one at a time. But if you have a list of applied patches, I believe it will send the series with the same command.
It will send a series if you provide it a range, so if you want to email all the patches you have queued, something like this:
hg email -r qbase:qtip
If you want to send just the top two:
hg email -r qtip~1:qtip
Or just two specific ones:
hg email -r qtip~4 -r qtip~1
There are several examples in 'hg email -h' that might be helpful.
--Dan