X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git-applymbox.sh;h=61c8c024c60935b4766b5052461b4c73918a69ec;hb=ee34518d629331dadd58b1a75294369d679eda8b;hp=79abce2a258cd3c4f701f58328bba9b87a029efc;hpb=4ebe63dfe6f2a8c652ecd8dfe6ab8a77b6c82b2f;p=git.git diff --git a/git-applymbox.sh b/git-applymbox.sh index 79abce2a..61c8c024 100755 --- a/git-applymbox.sh +++ b/git-applymbox.sh @@ -15,13 +15,11 @@ ## Pay a special attention to the commit log message if you do this and ## use a Signoff_file, because applypatch wants to append the sign-off ## message to msg-clean every time it is run. +## +## git-am is supposed to be the newer and better tool for this job. -. git-sh-setup || die "Not a git archive" - -usage () { - echo >&2 "applymbox [-u] [-k] [-q] [-m] (-c .dotest/ | mbox) [signoff]" - exit 1 -} +USAGE='[-u] [-k] [-q] [-m] (-c .dotest/ | mbox) [signoff]' +. git-sh-setup keep_subject= query_apply= continue= utf8= resume=t while case "$#" in 0) break ;; esac @@ -31,7 +29,7 @@ do -k) keep_subject=-k ;; -q) query_apply=t ;; -c) continue="$2"; resume=f; shift ;; - -m) fallback_3way=t ;; + -m) fall_back_3way=t ;; -*) usage ;; *) break ;; esac @@ -42,7 +40,8 @@ case "$continue" in '') rm -rf .dotest mkdir .dotest - git-mailsplit "$1" .dotest || exit 1 + num_msgs=$(git-mailsplit "$1" .dotest) || exit 1 + echo "$num_msgs patch(es) to process." shift esac