diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-01-29 13:18:53 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-01-29 13:18:53 -0800 |
commit | bff64a9cdabee8476ad1d2e45f586a2d6a884363 (patch) | |
tree | 8e40ea0492651a36c7b615e19c04b500c152bf29 /git-am.sh | |
parent | 1082fb22b236201ea71fcf5e262d48796992fe72 (diff) | |
parent | ee2d1cb402a7ccda0028b221f2252801b3cb7eef (diff) | |
download | git-bff64a9cdabee8476ad1d2e45f586a2d6a884363.tar.gz git-bff64a9cdabee8476ad1d2e45f586a2d6a884363.tar.xz |
Merge branch 'tr/maint-mailinfo'
* tr/maint-mailinfo:
mailinfo: with -b, keep space after [foo]
am: learn passing -b to mailinfo
Conflicts:
git-am.sh
Diffstat (limited to 'git-am.sh')
-rwxr-xr-x | git-am.sh | 20 |
1 files changed, 16 insertions, 4 deletions
@@ -15,6 +15,7 @@ q,quiet be quiet s,signoff add a Signed-off-by line to the commit message u,utf8 recode into utf8 (default) k,keep pass -k flag to git-mailinfo +keep-non-patch pass -b flag to git-mailinfo keep-cr pass --keep-cr flag to git-mailsplit for mbox format no-keep-cr do not pass --keep-cr flag to git-mailsplit independent of am.keepcr c,scissors strip everything before a scissors line @@ -387,6 +388,8 @@ do utf8= ;; -k|--keep) keep=t ;; + --keep-non-patch) + keep=b ;; -c|--scissors) scissors=t ;; --no-scissors) @@ -565,16 +568,25 @@ case "$resolved" in fi esac +# Now, decide what command line options we will give to the git +# commands we invoke, based on the result of parsing command line +# options and previous invocation state stored in $dotest/ files. + if test "$(cat "$dotest/utf8")" = t then utf8=-u else utf8=-n fi -if test "$(cat "$dotest/keep")" = t -then - keep=-k -fi +keep=$(cat "$dotest/keep") +case "$keep" in +t) + keep=-k ;; +b) + keep=-b ;; +*) + keep= ;; +esac case "$(cat "$dotest/scissors")" in t) scissors=--scissors ;; |