Hi all,

I just added a new git alias in my git config file to sign-off many patches with a single command.

It is: 
  so = "!f() { c=`expr $1 - 1`; git filter-branch -f --msg-filter \"cat && echo \\\"\nSigned-off-by: Your Name <you@example.org>\\\"\" HEAD~$c^..; }; f"

Until you have this alias defined, you can signed-off the number of patches you want with the following git command: git so X

Hope this helps,

Jonathan