#!/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 \
    --in-reply-to="69e87e0e.a00a0220.9259.001c.GAE@google.com" \
    --to="linux-rdma@vger.kernel.org" \
    "$(dirname "$0")/patch-email.txt"
