]> git.ipfire.org Git - thirdparty/git.git/commit
fast-export: rename --signed-tags='warn' to 'warn-verbatim'
authorLuke Shumaker <lukeshu@datawire.io>
Mon, 10 Mar 2025 15:57:43 +0000 (16:57 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 10 Mar 2025 20:24:55 +0000 (13:24 -0700)
commit3b24d86c56949ca0485bb279e49671b3942ad5a6
tree161f8f5f8f040e2a8703b29792c6becf1a3aeb7c
parent73ca6d20016973669619fe2f30aea38a0aac0f84
fast-export: rename --signed-tags='warn' to 'warn-verbatim'

The --signed-tags= option takes one of five arguments specifying how to
handle signed tags during export.  Among these arguments, 'strip' is to
'warn-strip' as 'verbatim' is to 'warn' (the unmentioned argument is
'abort', which stops the fast-export process entirely).  That is,
signatures are either stripped or copied verbatim while exporting, with
or without a warning.

Match the pattern and rename 'warn' to 'warn-verbatim' to make it clear
that it instructs fast-export to copy signatures verbatim.

To maintain backwards compatibility, 'warn' is still recognized as
deprecated synonym of 'warn-verbatim'.

Signed-off-by: Luke Shumaker <lukeshu@datawire.io>
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-fast-export.adoc
builtin/fast-export.c
t/t9350-fast-export.sh