I have a mail with N attachments in the 000X-xxxx.patch format. I would like to apply all the patches on top of my master, but I would like to have all the commits separate, as the original author commited them. Including the commit message of course.
Method 1: Open the email, click Save as, xxx.eml and then:
git am xxx.eml
The result is ok, but everything is squashed into one commit. Not acceptable.
Method 2. All the attachments are saved in a directory, then:
git am 000*.patch
Patch format detection failed.
git apply 000*.patch
(does nothing)
This is not working. Advices? Thanks.