mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 19:58:59 +00:00
7 lines
219 B
Bash
7 lines
219 B
Bash
#!/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"
|