diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-03-13 11:38:27 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-03-13 12:21:04 -0700 |
commit | 6c15a1c63634005a0f8fb15696e154cc54b0a359 (patch) | |
tree | 701a17b0d4208616b4fb963916333a158685f50a /git-am.sh | |
parent | fa678feb7ca12e306e2eaeb0078028505ab3318a (diff) | |
download | git-6c15a1c63634005a0f8fb15696e154cc54b0a359.tar.gz |
am: officially deprecate -b/--binary option
We have had these options as harmless no-op for more than 3 years without
officially deprecating them. Let's announce the deprecation and start
warning against their use, but without failing the command just not yet,
so that we can later repurpose the option if we want to in the future.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-am.sh')
-rwxr-xr-x | git-am.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -380,8 +380,8 @@ do -i|--interactive) interactive=t ;; -b|--binary) - echo >&2 "The -b/--binary option was deprecated in 1.6.0 and removed in 1.7.10." - die "Please adjust your scripts." + echo >&2 "The $1 option has been a no-op for long time, and" + echo >&2 "it will be removed. Please do not use it anymore." ;; -3|--3way) threeway=t ;; |