3 # Copyright (c) Josef "Jeff" Sipek, 2007
6 DO_NOT_CHECK_BRANCH_EXISTENCE
=1
8 USAGE
="[-n] [--in-reply-to <msgid>] [--git] [<hash> | <since>..[<until>] | ..<until>]"
11 TMP_FILE
=`get_tmp_file file`
13 while [ $# -gt 0 ]; do
32 r
=`munge_hash_range "$1"`
37 # display the list of commits to be sent as patches
38 git log
--pretty=oneline
"$r" | cut
-c 1-8,41- |
$pager
40 _disp
"Are these what you want to send? [Y/n] "
42 if [ "$n" = "n" ] ||
[ "$n" = "N" ]; then
46 dir
=`get_tmp_file patchbomb -d`
47 disp
"Using '$dir' as temporary directory"
49 # more than one patch?
50 if [ `git rev-list "$r" | wc -l` -gt 1 ]; then
51 format_opts
="-n" # include "n/m" in the subject
52 send_opts
="--no-chain-reply-to --compose" # compose
55 [ ! -z "$gitdiff" ] && format_opts
="$format_opts -C -M --find-copies-harder"
57 git format-patch
$format_opts -o $dir -s "$r"
59 # get the to/cc addresses
60 _disp
"Enter all the To: email addresses (separated by space): "
62 _disp
"Enter all the Cc: email addresses (separated by space): "
65 # convert list of email addresses to command line options
68 to_opts
="$to_opts --to $rt"
71 to_opts
="$to_opts --cc $rc"
74 opts
="$send_opts $to_opts"
76 # last possible point to abort!
77 _disp
"Proceed with patchbomb (this is the last chance to abort)? [y/N] "
79 if [ "$n" != "y" ] && [ "$n" != "Y" ]; then
85 if [ ! -z "$do_not_send" ]; then
86 disp
"-n passed: not sending, command that would be executed:" >&2
87 cmd
="echo git send-email"
90 if [ -z "$reply_to" ]; then
93 $cmd --in-reply-to "$reply_to" $opts $dir
97 _disp
"Delete temporary directory? [Y/n] "
100 [ "$n" = "n" ] ||
[ "$n" = "N" ] && exit 0