OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/sh -v | |
2 | |
3 # args [where to put patches] [smtp server] [destination] | |
4 | |
5 git format-patch -o "$1" --inline --subject-prefix=soc --thread origin | |
6 git send-email --no-chain-reply-to --smtp-server $2 --to $3 --dry-run "$1" | |
OLD | NEW |