From 62c89c662fc6220522adc009aa95b1392350ed20 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Tue, 9 Jan 2007 21:20:01 -0800 Subject: -u is now default for 'git-applymbox' It has '-n' to disable it just in case, but do not even bother documenting it. Signed-off-by: Junio C Hamano --- git-applymbox.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'git-applymbox.sh') diff --git a/git-applymbox.sh b/git-applymbox.sh index 5569fdcc34..7e690a16ee 100755 --- a/git-applymbox.sh +++ b/git-applymbox.sh @@ -23,11 +23,12 @@ USAGE='[-u] [-k] [-q] [-m] (-c .dotest/ | mbox) [signoff]' 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 ;; -- cgit v1.2.3