#!/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 \
    --to="amd-gfx@lists.freedesktop.org" \
    --in-reply-to="bug-221376-2300@https.bugzilla.kernel.org/" \
    "$(dirname "$0")/patch-email.txt"
