git-patch

How to sign off a patch using git

Hi, I'm working on a project where some people will sent me git patches and I've to verify those patches and sign off the commits. We are creating the patches using git format-patch master --stdout > file.patch And the file is mailed to us, then we've to verify the patch. For this we creates a new branch and then applies the patch t...