am - apply a patch that someone sent you
If you're in charge of a repository, you can apply a patch you received from someone else with git am:
$ git am patch.mbox
Here, patch.mbox is the mail message (including attachments) that you received with the patch.
Git automatically handles multiple mail messages and extracts attachment and authorship information.