#!/bin/sh
# Review before sending:
#   - Adjust --smtp-server / --smtp-user if not already configured
#     in ~/.gitconfig
#   - --annotate opens the patch in $EDITOR for a last review before send

git send-email \
    --annotate \
    --from="$(git config user.name) <$(git config user.email)>" \
    --to="linux-i2c@vger.kernel.org" \
    --in-reply-to="<69e93024.a00a0220.17a17.0031.GAE@google.com>" \
    "$(dirname "$0")/patch-email.txt"
