[chirp_devel] How to prepare and send multiple patches?
Hi all,
I pretty much know how to prepare a patch and submit it. However, if I were to prepare multiple patches, how is the developer process in that case?
I know that I can pile up a number of patches using "hg qnew -ef NameOfPatch"; with "hg qapplied" I'm shown a list of all applied patches. But when using "hg export tip", only the last patch seems to be prepared for emailing. So, how do I do this in a way which sends all prepared patches?
Thanks Bernhard
On Wed, Feb 5, 2020 at 1:48 AM Bernhard Hailer via chirp_devel chirp_devel@intrepid.danplanet.com wrote:
Hi all,
I pretty much know how to prepare a patch and submit it. However, if I were to prepare multiple patches, how is the developer process in that case?
I know that I can pile up a number of patches using "hg qnew -ef NameOfPatch"; with "hg qapplied" I'm shown a list of all applied patches. But when using "hg export tip", only the last patch seems to be prepared for emailing. So, how do I do this in a way which sends all prepared patches?
Thanks Bernhard
Hi Bernhard,
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.
hg email tip
Jim KC9HI
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
Thanks Dan!
I was able to speak with Dan Clemmensen (he's in the same club I'm in) and will be able to provide one more fix to the ft4 driver (frequency limitations). The patches should arrive tonight, I hope.
73 Bernhard
On 05-Feb-20 13:45, Dan Smith via chirp_devel wrote:
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 _______________________________________________ chirp_devel mailing list chirp_devel@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_devel Developer docs: http://chirp.danplanet.com/projects/chirp/wiki/Developers
participants (3)
-
Bernhard Hailer
-
Dan Smith
-
Jim Unroe