git multiple subject prefix with format-patch

Viewed 1412

I wanted to add more then one subject prefix to my patch while using the format-patch option of git.

The subject should look something like

[Qemu-devel] [PATCH] linux-user/qemu.h Changed ..........

How to do this?


Doing

git format-patch --subject-prefix="Qemu-Devel PATCH" .....

Results in

[Qemu-Devel PATCH] linux-user/qemu.h Changed ..........
2 Answers
Related