I create an empty commit:
$ git commit --allow-empty -m "something important"
Sometimes it is useful, e.g. to coordinate 2 (or more) distinct git trees.
However, when I
$ git format-patch ...
Empty commits are omitted, as they are not associated with any code diff. Is there a way to include empty commits in a patch ? Thanks in advance !