5 Jan
2012
5 Jan
'12
11:01 a.m.
On Wed, Jan 4, 2012 at 20:54, Florian Pritz <bluewind@xinu.at> wrote:
cat =git-archprojects #!/bin/bash
if (( $# < 2 )); then echo "usage: ${0##*/}: <project> <options to git send-email>" exit 1 fi
exec git format-patch --to arch-projects@archlinux.org --subject-prefix="$1] [PATCH" "${@:2}"
######
This creates the patch files in the current directory so you can review them. Then run `git send-email *.patch`. (I think they end with .patch, but I'm not sure right now and I don't wanna test)
Thanks! I'll give it a shot once i've set up git and msmtp.