File tree Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -1219,18 +1219,6 @@ This does not affect linkgit:git-format-patch[1] or the
1219
1219
'git-diff-{asterisk}' plumbing commands. Can be overridden on the
1220
1220
command line with the `--color[=<when>]` option.
1221
1221
1222
- diff.colorMoved::
1223
- If set to either a valid `<mode>` or a true value, moved lines
1224
- in a diff are colored differently, for details of valid modes
1225
- see '--color-moved' in linkgit:git-diff[1]. If simply set to
1226
- true the default color mode will be used. When set to false,
1227
- moved lines are not colored.
1228
-
1229
- diff.colorMovedWS::
1230
- When moved lines are colored using e.g. the `diff.colorMoved` setting,
1231
- this option controls the `<mode>` how spaces are treated
1232
- for details of valid modes see '--color-moved-ws' in linkgit:git-diff[1].
1233
-
1234
1222
color.diff.<slot>::
1235
1223
Use customized color for diff colorization. `<slot>` specifies
1236
1224
which part of the patch to use the specified color, and is one
Original file line number Diff line number Diff line change @@ -208,3 +208,15 @@ diff.wsErrorHighlight::
208
208
whitespace errors are colored with `color.diff.whitespace`.
209
209
The command line option `--ws-error-highlight=<kind>`
210
210
overrides this setting.
211
+
212
+ diff.colorMoved::
213
+ If set to either a valid `<mode>` or a true value, moved lines
214
+ in a diff are colored differently, for details of valid modes
215
+ see '--color-moved' in linkgit:git-diff[1]. If simply set to
216
+ true the default color mode will be used. When set to false,
217
+ moved lines are not colored.
218
+
219
+ diff.colorMovedWS::
220
+ When moved lines are colored using e.g. the `diff.colorMoved` setting,
221
+ this option controls the `<mode>` how spaces are treated
222
+ for details of valid modes see '--color-moved-ws' in linkgit:git-diff[1].
Original file line number Diff line number Diff line change @@ -2047,7 +2047,7 @@ $(BUILT_INS): git$X
2047
2047
2048
2048
command-list.h : generate-cmdlist.sh command-list.txt
2049
2049
2050
- command-list.h : $(wildcard Documentation/git* .txt) Documentation/config.txt
2050
+ command-list.h : $(wildcard Documentation/git* .txt) Documentation/* config.txt
2051
2051
$(QUIET_GEN )$(SHELL_PATH ) ./generate-cmdlist.sh command-list.txt > $@ + && mv $@ + $@
2052
2052
2053
2053
SCRIPT_DEFINES = $(SHELL_PATH_SQ ) :$(DIFF_SQ ) :$(GIT_VERSION ) :\
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ print_config_list () {
80
80
cat << EOF
81
81
static const char *config_name_list[] = {
82
82
EOF
83
- grep ' ^[a-zA-Z].*\..*::$' Documentation/config.txt |
83
+ grep -h ' ^[a-zA-Z].*\..*::$' Documentation/* config.txt |
84
84
sed ' /deprecated/d; s/::$//; s/, */\n/g' |
85
85
sort |
86
86
while read line
You can’t perform that action at this time.
0 commit comments