#!/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)>" \
    --in-reply-to="<69ef2847.170a0220.11de9.001a.GAE@google.com>" \
    --to="linux-hams@vger.kernel.org" \
    "$(dirname "$0")/patch-email.txt"
