Hi, > > "git send-email" should send the patches with correct headers, it even > > asks for the charset it should use in case it finds non-ascii > > characters. So BALATON, could you check your mail client config, or > > switch over to "git send-email" for submitting patches? > > I'm sending what git format-patch is generating and that does not add > content type header by default. Is there a config option to enable that? I > can't use git send-email because I'm sending from different machine than I > use git on.
git send-email also accepts files generated by git format-patch, so you can: (1) "git format-patch master..$branch", on machine A (2) copy over 000*.patch from machine A to machine B (3) "git send-email 000*.patch", on machine B But take care that you don't have old 000*.patch files lying around on machine B ... HTH, Gerd