#!/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="netdev@vger.kernel.org" \
    --in-reply-to="69f16c26.170a0220.34e5b8.0013.GAE@google.com" \
    "$(dirname "$0")/patch-email.txt"
