Hi SwissalpS,
Thanks for sending these patches through. I assume you have a branch
with them
as 3 commits in order. Could you either re-run git format-patch to create a
patch set for the entire branch (this creates files like 0001, 0002,
0003) and
re-send that to the list, or at least tell us what order the patches
should be
applied?
This isn't a lot of people's normal workflow, so here's a quick tutorial
on the
email workflow. To send multiple patches as a set, first ask format-patch to
make a series for your branch, e.g.
$ git format-patch master
That should create files prefixed 0001, 0002, 0003 with the commit messages.
Then to send the entire patch set, mention each file by name in order
with git
send-email:
$ git send-email 0001-... 0002-...
If you can do that it will help because gpcf will be able to apply the
patches
easily in order with `git apply`. Thanks.