#!/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="<CAPHJ_VJeBAL_fk+P79guYTABZgW1hkcAz8t=c_nVK1mbn3_FYw@mail.gmail.com>" \
    --to="linux-ext4@vger.kernel.org" \
    "$(dirname "$0")/patch-email.txt"
