summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3cf167b)
raw | patch | inline | side by side (parent: 3cf167b)
author | Junio C Hamano <junkio@cox.net> | |
Wed, 10 Jan 2007 05:20:01 +0000 (21:20 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 10 Jan 2007 05:20:39 +0000 (21:20 -0800) |
It has '-n' to disable it just in case, but do not even bother
documenting it.
Signed-off-by: Junio C Hamano <junkio@cox.net>
documenting it.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/git-applymbox.txt | patch | blob | history | |
git-applymbox.sh | patch | blob | history |
index f74c6a49b3c5d52ed662a83832c7d06915fac65b..95dc65a583552d4f7e2d1fa34c448832c66a3353 100644 (file)
and the current tree.
-u::
- By default, the commit log message, author name and
- author email are taken from the e-mail without any
- charset conversion, after minimally decoding MIME
- transfer encoding. This flag causes the resulting
- commit to be encoded in utf-8 by transliterating them.
- Note that the patch is always used as is without charset
- conversion, even with this flag.
+ The commit log message, author name and author email are
+ taken from the e-mail, and after minimally decoding MIME
+ transfer encoding, re-coded in UTF-8 by transliterating
+ them. This used to be optional but now it is the default.
++
+Note that the patch is always used as-is without charset
+conversion, even with this flag.
-c .dotest/<num>::
When the patch contained in an e-mail does not cleanly
diff --git a/git-applymbox.sh b/git-applymbox.sh
index 5569fdcc3463b214411d5a168a00783b0d390044..7e690a16ee40c957b83770cf115190c53edd3013 100755 (executable)
--- a/git-applymbox.sh
+++ b/git-applymbox.sh
git var GIT_COMMITTER_IDENT >/dev/null || exit
-keep_subject= query_apply= continue= utf8= resume=t
+keep_subject= query_apply= continue= utf8=-u resume=t
while case "$#" in 0) break ;; esac
do
case "$1" in
-u) utf8=-u ;;
+ -n) utf8= ;;
-k) keep_subject=-k ;;
-q) query_apply=t ;;
-c) continue="$2"; resume=f; shift ;;