Welcome to mirror list, hosted at ThFree Co, Russian Federation.

email.sh « mt-work - github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5cdb72338c747f755067ab2fbaec3a8c3f356ed (plain)
1
2
3
4
5
6
#!/bin/sh -v

# args [where to put patches] [smtp server] [destination]

git format-patch -o "$1" --inline --subject-prefix=soc --thread origin
git send-email --no-chain-reply-to --smtp-server $2 --to $3 --dry-run "$1"