@@ -5676,22 +5676,23 @@ <h3 id="_variables">Variables</h3>
5676
5676
< div class ="ulist ">
5677
5677
< ul >
5678
5678
< li >
5679
- < p > 0 (default) : show the suggested command.</ p >
5679
+ < p > 0, "false", "off", "no", "show" : show the suggested command (default) .</ p >
5680
5680
</ li >
5681
5681
< li >
5682
- < p > positive number: run the suggested command after specified
5682
+ < p > 1, "true", "on", "yes", "immediate": run the suggested command
5683
+ immediately.</ p >
5684
+ </ li >
5685
+ < li >
5686
+ < p > positive number > 1: run the suggested command after specified
5683
5687
deciseconds (0.1 sec).</ p >
5684
5688
</ li >
5685
5689
< li >
5686
- < p > "immediate ": run the suggested command immediately .</ p >
5690
+ < p > "never ": don’t run or show any suggested command.</ p >
5687
5691
</ li >
5688
5692
< li >
5689
5693
< p > "prompt": show the suggestion and prompt for confirmation to run
5690
5694
the command.</ p >
5691
5695
</ li >
5692
- < li >
5693
- < p > "never": don’t run or show any suggested command.</ p >
5694
- </ li >
5695
5696
</ ul >
5696
5697
</ div >
5697
5698
</ dd >
@@ -8959,6 +8960,175 @@ <h3 id="_variables">Variables</h3>
8959
8960
write a sentinel file that will block further tracing to this
8960
8961
directory. Defaults to 0, which disables this check.</ p >
8961
8962
</ dd >
8963
+ < dt class ="hdlist1 "> trailer.separators</ dt >
8964
+ < dd >
8965
+ < p > This option tells which characters are recognized as trailer
8966
+ separators. By default only < em > :</ em > is recognized as a trailer
8967
+ separator, except that < em > =</ em > is always accepted on the command
8968
+ line for compatibility with other git commands.</ p >
8969
+ < div class ="paragraph ">
8970
+ < p > The first character given by this option will be the default character
8971
+ used when another separator is not specified in the config for this
8972
+ trailer.</ p >
8973
+ </ div >
8974
+ < div class ="paragraph ">
8975
+ < p > For example, if the value for this option is "%=$", then only lines
8976
+ using the format < em > <key><sep><value></ em > with <sep> containing < em > %</ em > , < em > =</ em >
8977
+ or < em > $</ em > and then spaces will be considered trailers. And < em > %</ em > will be
8978
+ the default separator used, so by default trailers will appear like:
8979
+ < em > <key>% <value></ em > (one percent sign and one space will appear between
8980
+ the key and the value).</ p >
8981
+ </ div >
8982
+ </ dd >
8983
+ < dt class ="hdlist1 "> trailer.where</ dt >
8984
+ < dd >
8985
+ < p > This option tells where a new trailer will be added.</ p >
8986
+ < div class ="paragraph ">
8987
+ < p > This can be < code > end</ code > , which is the default, < code > start</ code > , < code > after</ code > or < code > before</ code > .</ p >
8988
+ </ div >
8989
+ < div class ="paragraph ">
8990
+ < p > If it is < code > end</ code > , then each new trailer will appear at the end of the
8991
+ existing trailers.</ p >
8992
+ </ div >
8993
+ < div class ="paragraph ">
8994
+ < p > If it is < code > start</ code > , then each new trailer will appear at the start,
8995
+ instead of the end, of the existing trailers.</ p >
8996
+ </ div >
8997
+ < div class ="paragraph ">
8998
+ < p > If it is < code > after</ code > , then each new trailer will appear just after the
8999
+ last trailer with the same <key>.</ p >
9000
+ </ div >
9001
+ < div class ="paragraph ">
9002
+ < p > If it is < code > before</ code > , then each new trailer will appear just before the
9003
+ first trailer with the same <key>.</ p >
9004
+ </ div >
9005
+ </ dd >
9006
+ < dt class ="hdlist1 "> trailer.ifexists</ dt >
9007
+ < dd >
9008
+ < p > This option makes it possible to choose what action will be
9009
+ performed when there is already at least one trailer with the
9010
+ same <key> in the input.</ p >
9011
+ < div class ="paragraph ">
9012
+ < p > The valid values for this option are: < code > addIfDifferentNeighbor</ code > (this
9013
+ is the default), < code > addIfDifferent</ code > , < code > add</ code > , < code > replace</ code > or < code > doNothing</ code > .</ p >
9014
+ </ div >
9015
+ < div class ="paragraph ">
9016
+ < p > With < code > addIfDifferentNeighbor</ code > , a new trailer will be added only if no
9017
+ trailer with the same (<key>, <value>) pair is above or below the line
9018
+ where the new trailer will be added.</ p >
9019
+ </ div >
9020
+ < div class ="paragraph ">
9021
+ < p > With < code > addIfDifferent</ code > , a new trailer will be added only if no trailer
9022
+ with the same (<key>, <value>) pair is already in the input.</ p >
9023
+ </ div >
9024
+ < div class ="paragraph ">
9025
+ < p > With < code > add</ code > , a new trailer will be added, even if some trailers with
9026
+ the same (<key>, <value>) pair are already in the input.</ p >
9027
+ </ div >
9028
+ < div class ="paragraph ">
9029
+ < p > With < code > replace</ code > , an existing trailer with the same <key> will be
9030
+ deleted and the new trailer will be added. The deleted trailer will be
9031
+ the closest one (with the same <key>) to the place where the new one
9032
+ will be added.</ p >
9033
+ </ div >
9034
+ < div class ="paragraph ">
9035
+ < p > With < code > doNothing</ code > , nothing will be done; that is no new trailer will be
9036
+ added if there is already one with the same <key> in the input.</ p >
9037
+ </ div >
9038
+ </ dd >
9039
+ < dt class ="hdlist1 "> trailer.ifmissing</ dt >
9040
+ < dd >
9041
+ < p > This option makes it possible to choose what action will be
9042
+ performed when there is not yet any trailer with the same
9043
+ <key> in the input.</ p >
9044
+ < div class ="paragraph ">
9045
+ < p > The valid values for this option are: < code > add</ code > (this is the default) and
9046
+ < code > doNothing</ code > .</ p >
9047
+ </ div >
9048
+ < div class ="paragraph ">
9049
+ < p > With < code > add</ code > , a new trailer will be added.</ p >
9050
+ </ div >
9051
+ < div class ="paragraph ">
9052
+ < p > With < code > doNothing</ code > , nothing will be done.</ p >
9053
+ </ div >
9054
+ </ dd >
9055
+ < dt class ="hdlist1 "> trailer.<keyAlias>.key</ dt >
9056
+ < dd >
9057
+ < p > Defines a <keyAlias> for the <key>. The <keyAlias> must be a
9058
+ prefix (case does not matter) of the <key>. For example, in < code > git</ code >
9059
+ < code > config</ code > < code > trailer.ack.key</ code > "Acked-by" the "Acked-by" is the <key> and
9060
+ the "ack" is the <keyAlias>. This configuration allows the shorter
9061
+ < code > --trailer</ code > "ack:< code > ...</ code > " invocation on the command line using the "ack"
9062
+ <keyAlias> instead of the longer < code > --trailer</ code > "Acked-by:< code > ...</ code > ".</ p >
9063
+ < div class ="paragraph ">
9064
+ < p > At the end of the <key>, a separator can appear and then some
9065
+ space characters. By default the only valid separator is < em > :</ em > ,
9066
+ but this can be changed using the < code > trailer.separators</ code > config
9067
+ variable.</ p >
9068
+ </ div >
9069
+ < div class ="paragraph ">
9070
+ < p > If there is a separator in the key, then it overrides the default
9071
+ separator when adding the trailer.</ p >
9072
+ </ div >
9073
+ </ dd >
9074
+ < dt class ="hdlist1 "> trailer.<keyAlias>.where</ dt >
9075
+ < dd >
9076
+ < p > This option takes the same values as the < em > trailer.where</ em >
9077
+ configuration variable and it overrides what is specified by
9078
+ that option for trailers with the specified <keyAlias>.</ p >
9079
+ </ dd >
9080
+ < dt class ="hdlist1 "> trailer.<keyAlias>.ifexists</ dt >
9081
+ < dd >
9082
+ < p > This option takes the same values as the < em > trailer.ifexists</ em >
9083
+ configuration variable and it overrides what is specified by
9084
+ that option for trailers with the specified <keyAlias>.</ p >
9085
+ </ dd >
9086
+ < dt class ="hdlist1 "> trailer.<keyAlias>.ifmissing</ dt >
9087
+ < dd >
9088
+ < p > This option takes the same values as the < em > trailer.ifmissing</ em >
9089
+ configuration variable and it overrides what is specified by
9090
+ that option for trailers with the specified <keyAlias>.</ p >
9091
+ </ dd >
9092
+ < dt class ="hdlist1 "> trailer.<keyAlias>.command</ dt >
9093
+ < dd >
9094
+ < p > Deprecated in favor of < em > trailer.<keyAlias>.cmd</ em > .
9095
+ This option behaves in the same way as < em > trailer.<keyAlias>.cmd</ em > , except
9096
+ that it doesn’t pass anything as argument to the specified command.
9097
+ Instead the first occurrence of substring $ARG is replaced by the
9098
+ <value> that would be passed as argument.</ p >
9099
+ < div class ="paragraph ">
9100
+ < p > Note that $ARG in the user’s command is
9101
+ only replaced once and that the original way of replacing $ARG is not safe.</ p >
9102
+ </ div >
9103
+ < div class ="paragraph ">
9104
+ < p > When both < em > trailer.<keyAlias>.cmd</ em > and < em > trailer.<keyAlias>.command</ em > are given
9105
+ for the same <keyAlias>, < em > trailer.<keyAlias>.cmd</ em > is used and
9106
+ < em > trailer.<keyAlias>.command</ em > is ignored.</ p >
9107
+ </ div >
9108
+ </ dd >
9109
+ < dt class ="hdlist1 "> trailer.<keyAlias>.cmd</ dt >
9110
+ < dd >
9111
+ < p > This option can be used to specify a shell command that will be called
9112
+ once to automatically add a trailer with the specified <keyAlias>, and then
9113
+ called each time a < em > --trailer <keyAlias>=<value></ em > argument is specified to
9114
+ modify the <value> of the trailer that this option would produce.</ p >
9115
+ < div class ="paragraph ">
9116
+ < p > When the specified command is first called to add a trailer
9117
+ with the specified <keyAlias>, the behavior is as if a special
9118
+ < em > --trailer <keyAlias>=<value></ em > argument was added at the beginning
9119
+ of the "git interpret-trailers" command, where <value>
9120
+ is taken to be the standard output of the command with any
9121
+ leading and trailing whitespace trimmed off.</ p >
9122
+ </ div >
9123
+ < div class ="paragraph ">
9124
+ < p > If some < em > --trailer <keyAlias>=<value></ em > arguments are also passed
9125
+ on the command line, the command is called again once for each
9126
+ of these arguments with the same <keyAlias>. And the <value> part
9127
+ of these arguments, if any, will be passed to the command as its
9128
+ first argument. This way the command can produce a <value> computed
9129
+ from the <value> passed in the < em > --trailer <keyAlias>=<value></ em > argument.</ p >
9130
+ </ div >
9131
+ </ dd >
8962
9132
< dt class ="hdlist1 "> transfer.credentialsInUrl</ dt >
8963
9133
< dd >
8964
9134
< p > A configured URL can contain plaintext credentials in the form
0 commit comments