diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-09 21:20:01 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-09 21:20:39 -0800 |
commit | 62c89c662fc6220522adc009aa95b1392350ed20 (patch) | |
tree | a830f8961d34bc1d8a5b47c5eb84884375448c91 /git-applymbox.sh | |
parent | 3cf167ba4bac1be5f52acae0a582d907121982b2 (diff) | |
download | git-62c89c662fc6220522adc009aa95b1392350ed20.tar.gz |
-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 <junkio@cox.net>
Diffstat (limited to 'git-applymbox.sh')
-rwxr-xr-x | git-applymbox.sh | 3 |
1 files changed, 2 insertions, 1 deletions
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/<num> | 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 ;; |