Merge branch 'ps/config-get-color-fixes'
The use of "git config get" command to learn how ANSI color sequence is for a particular type, e.g., "git config get --type=color --default=reset no.such.thing", isn't very ergonomic. * ps/config-get-color-fixes: builtin/config: do not spawn pager when printing color codes builtin/config: special-case retrieving colors without a key builtin/config: do not die in `get_color()` t1300: small style fixups t1300: write test expectations in the test's body
This commit is contained in:
@@ -547,24 +547,31 @@ static int git_get_color_config(const char *var, const char *value,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void get_color(const struct config_location_options *opts,
|
static int get_color(const struct config_location_options *opts,
|
||||||
const char *var, const char *def_color)
|
const char *var, const char *def_color)
|
||||||
{
|
{
|
||||||
struct get_color_config_data data = {
|
struct get_color_config_data data = {
|
||||||
.get_color_slot = var,
|
.get_color_slot = var,
|
||||||
.parsed_color[0] = '\0',
|
.parsed_color[0] = '\0',
|
||||||
};
|
};
|
||||||
|
int ret;
|
||||||
|
|
||||||
config_with_options(git_get_color_config, &data,
|
config_with_options(git_get_color_config, &data,
|
||||||
&opts->source, the_repository,
|
&opts->source, the_repository,
|
||||||
&opts->options);
|
&opts->options);
|
||||||
|
|
||||||
if (!data.get_color_found && def_color) {
|
if (!data.get_color_found && def_color) {
|
||||||
if (color_parse(def_color, data.parsed_color) < 0)
|
if (color_parse(def_color, data.parsed_color) < 0) {
|
||||||
die(_("unable to parse default color value"));
|
ret = error(_("unable to parse default color value"));
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ret = 0;
|
||||||
|
|
||||||
|
out:
|
||||||
fputs(data.parsed_color, stdout);
|
fputs(data.parsed_color, stdout);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct get_colorbool_config_data {
|
struct get_colorbool_config_data {
|
||||||
@@ -913,10 +920,13 @@ static int cmd_config_get(int argc, const char **argv, const char *prefix,
|
|||||||
location_options_init(&location_opts, prefix);
|
location_options_init(&location_opts, prefix);
|
||||||
display_options_init(&display_opts);
|
display_options_init(&display_opts);
|
||||||
|
|
||||||
setup_auto_pager("config", 1);
|
if (display_opts.type != TYPE_COLOR)
|
||||||
|
setup_auto_pager("config", 1);
|
||||||
|
|
||||||
if (url)
|
if (url)
|
||||||
ret = get_urlmatch(&location_opts, &display_opts, argv[0], url);
|
ret = get_urlmatch(&location_opts, &display_opts, argv[0], url);
|
||||||
|
else if (display_opts.type == TYPE_COLOR && !strlen(argv[0]) && display_opts.default_value)
|
||||||
|
ret = get_color(&location_opts, "", display_opts.default_value);
|
||||||
else
|
else
|
||||||
ret = get_value(&location_opts, &display_opts, argv[0], value_pattern,
|
ret = get_value(&location_opts, &display_opts, argv[0], value_pattern,
|
||||||
get_value_flags, flags);
|
get_value_flags, flags);
|
||||||
@@ -1391,7 +1401,7 @@ static int cmd_config_actions(int argc, const char **argv, const char *prefix)
|
|||||||
}
|
}
|
||||||
else if (actions == ACTION_GET_COLOR) {
|
else if (actions == ACTION_GET_COLOR) {
|
||||||
check_argc(argc, 1, 2);
|
check_argc(argc, 1, 2);
|
||||||
get_color(&location_opts, argv[0], argv[1]);
|
ret = get_color(&location_opts, argv[0], argv[1]);
|
||||||
}
|
}
|
||||||
else if (actions == ACTION_GET_COLORBOOL) {
|
else if (actions == ACTION_GET_COLORBOOL) {
|
||||||
check_argc(argc, 1, 2);
|
check_argc(argc, 1, 2);
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
|
|||||||
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
||||||
|
|
||||||
. ./test-lib.sh
|
. ./test-lib.sh
|
||||||
|
. "$TEST_DIRECTORY"/lib-terminal.sh
|
||||||
|
|
||||||
for mode in legacy subcommands
|
for mode in legacy subcommands
|
||||||
do
|
do
|
||||||
@@ -134,38 +135,39 @@ test_expect_success 'clear default config' '
|
|||||||
rm -f .git/config
|
rm -f .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'initial' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
[section]
|
[section]
|
||||||
penguin = little blue
|
penguin = little blue
|
||||||
EOF
|
EOF
|
||||||
test_expect_success 'initial' '
|
|
||||||
git config ${mode_set} section.penguin "little blue" &&
|
git config ${mode_set} section.penguin "little blue" &&
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'mixed case' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
[section]
|
[section]
|
||||||
penguin = little blue
|
penguin = little blue
|
||||||
Movie = BadPhysics
|
Movie = BadPhysics
|
||||||
EOF
|
EOF
|
||||||
test_expect_success 'mixed case' '
|
|
||||||
git config ${mode_set} Section.Movie BadPhysics &&
|
git config ${mode_set} Section.Movie BadPhysics &&
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'similar section' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
[section]
|
[section]
|
||||||
penguin = little blue
|
penguin = little blue
|
||||||
Movie = BadPhysics
|
Movie = BadPhysics
|
||||||
[Sections]
|
[Sections]
|
||||||
WhatEver = Second
|
WhatEver = Second
|
||||||
EOF
|
EOF
|
||||||
test_expect_success 'similar section' '
|
|
||||||
git config ${mode_set} Sections.WhatEver Second &&
|
git config ${mode_set} Sections.WhatEver Second &&
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'uppercase section' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
[section]
|
[section]
|
||||||
penguin = little blue
|
penguin = little blue
|
||||||
Movie = BadPhysics
|
Movie = BadPhysics
|
||||||
@@ -173,7 +175,6 @@ cat > expect << EOF
|
|||||||
[Sections]
|
[Sections]
|
||||||
WhatEver = Second
|
WhatEver = Second
|
||||||
EOF
|
EOF
|
||||||
test_expect_success 'uppercase section' '
|
|
||||||
git config ${mode_set} SECTION.UPPERCASE true &&
|
git config ${mode_set} SECTION.UPPERCASE true &&
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
@@ -186,7 +187,8 @@ test_expect_success 'replace with non-match (actually matching)' '
|
|||||||
git config section.penguin "very blue" !kingpin
|
git config section.penguin "very blue" !kingpin
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'append comments' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
[section]
|
[section]
|
||||||
Movie = BadPhysics
|
Movie = BadPhysics
|
||||||
UPPERCASE = true
|
UPPERCASE = true
|
||||||
@@ -198,8 +200,6 @@ cat > expect << EOF
|
|||||||
[Sections]
|
[Sections]
|
||||||
WhatEver = Second
|
WhatEver = Second
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'append comments' '
|
|
||||||
git config --replace-all --comment="Pygoscelis papua" section.penguin gentoo &&
|
git config --replace-all --comment="Pygoscelis papua" section.penguin gentoo &&
|
||||||
git config ${mode_set} --comment="find fish" section.disposition peckish &&
|
git config ${mode_set} --comment="find fish" section.disposition peckish &&
|
||||||
git config ${mode_set} --comment="#abc" section.foo bar &&
|
git config ${mode_set} --comment="#abc" section.foo bar &&
|
||||||
@@ -214,7 +214,9 @@ test_expect_success 'Prohibited LF in comment' '
|
|||||||
test_must_fail git config ${mode_set} --comment="a${LF}b" section.k v
|
test_must_fail git config ${mode_set} --comment="a${LF}b" section.k v
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'non-match result' 'test_cmp expect .git/config'
|
test_expect_success 'non-match result' '
|
||||||
|
test_cmp expect .git/config
|
||||||
|
'
|
||||||
|
|
||||||
test_expect_success 'find mixed-case key by canonical name' '
|
test_expect_success 'find mixed-case key by canonical name' '
|
||||||
test_cmp_config Second sections.whatever
|
test_cmp_config Second sections.whatever
|
||||||
@@ -265,14 +267,15 @@ test_expect_success 'unset with cont. lines' '
|
|||||||
git config ${mode_unset} beta.baz
|
git config ${mode_unset} beta.baz
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect <<\EOF
|
test_expect_success 'unset with cont. lines is correct' '
|
||||||
[alpha]
|
cat >expect <<-\EOF &&
|
||||||
bar = foo
|
[alpha]
|
||||||
[beta]
|
bar = foo
|
||||||
foo = bar
|
[beta]
|
||||||
EOF
|
foo = bar
|
||||||
|
EOF
|
||||||
test_expect_success 'unset with cont. lines is correct' 'test_cmp expect .git/config'
|
test_cmp expect .git/config
|
||||||
|
'
|
||||||
|
|
||||||
cat > .git/config << EOF
|
cat > .git/config << EOF
|
||||||
[beta] ; silly comment # another comment
|
[beta] ; silly comment # another comment
|
||||||
@@ -292,16 +295,15 @@ test_expect_success 'multiple unset' '
|
|||||||
git config ${mode_unset_all} beta.haha
|
git config ${mode_unset_all} beta.haha
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'multiple unset is correct' '
|
||||||
|
cat >expect <<EOF &&
|
||||||
[beta] ; silly comment # another comment
|
[beta] ; silly comment # another comment
|
||||||
noIndent= sillyValue ; 'nother silly comment
|
noIndent= sillyValue ; ${SQ}nother silly comment
|
||||||
|
|
||||||
# empty line
|
# empty line
|
||||||
; comment
|
; comment
|
||||||
[nextSection] noNewline = ouch
|
[nextSection] noNewline = ouch
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'multiple unset is correct' '
|
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
@@ -318,37 +320,37 @@ test_expect_success '--replace-all' '
|
|||||||
git config ${mode_replace_all} beta.haha gamma
|
git config ${mode_replace_all} beta.haha gamma
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'all replaced' '
|
||||||
|
cat >expect <<EOF &&
|
||||||
[beta] ; silly comment # another comment
|
[beta] ; silly comment # another comment
|
||||||
noIndent= sillyValue ; 'nother silly comment
|
noIndent= sillyValue ; ${SQ}nother silly comment
|
||||||
|
|
||||||
# empty line
|
# empty line
|
||||||
; comment
|
; comment
|
||||||
haha = gamma
|
haha = gamma
|
||||||
[nextSection] noNewline = ouch
|
[nextSection] noNewline = ouch
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'all replaced' '
|
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'really mean test' '
|
||||||
|
cat >expect <<EOF &&
|
||||||
[beta] ; silly comment # another comment
|
[beta] ; silly comment # another comment
|
||||||
noIndent= sillyValue ; 'nother silly comment
|
noIndent= sillyValue ; ${SQ}nother silly comment
|
||||||
|
|
||||||
# empty line
|
# empty line
|
||||||
; comment
|
; comment
|
||||||
haha = alpha
|
haha = alpha
|
||||||
[nextSection] noNewline = ouch
|
[nextSection] noNewline = ouch
|
||||||
EOF
|
EOF
|
||||||
test_expect_success 'really mean test' '
|
|
||||||
git config ${mode_set} beta.haha alpha &&
|
git config ${mode_set} beta.haha alpha &&
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'really really mean test' '
|
||||||
|
cat >expect <<EOF &&
|
||||||
[beta] ; silly comment # another comment
|
[beta] ; silly comment # another comment
|
||||||
noIndent= sillyValue ; 'nother silly comment
|
noIndent= sillyValue ; ${SQ}nother silly comment
|
||||||
|
|
||||||
# empty line
|
# empty line
|
||||||
; comment
|
; comment
|
||||||
@@ -356,7 +358,6 @@ noIndent= sillyValue ; 'nother silly comment
|
|||||||
[nextSection]
|
[nextSection]
|
||||||
nonewline = wow
|
nonewline = wow
|
||||||
EOF
|
EOF
|
||||||
test_expect_success 'really really mean test' '
|
|
||||||
git config ${mode_set} nextsection.nonewline wow &&
|
git config ${mode_set} nextsection.nonewline wow &&
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
@@ -365,23 +366,24 @@ test_expect_success 'get value' '
|
|||||||
test_cmp_config alpha beta.haha
|
test_cmp_config alpha beta.haha
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'unset' '
|
||||||
|
cat >expect <<EOF &&
|
||||||
[beta] ; silly comment # another comment
|
[beta] ; silly comment # another comment
|
||||||
noIndent= sillyValue ; 'nother silly comment
|
noIndent= sillyValue ; ${SQ}nother silly comment
|
||||||
|
|
||||||
# empty line
|
# empty line
|
||||||
; comment
|
; comment
|
||||||
[nextSection]
|
[nextSection]
|
||||||
nonewline = wow
|
nonewline = wow
|
||||||
EOF
|
EOF
|
||||||
test_expect_success 'unset' '
|
|
||||||
git config ${mode_unset} beta.haha &&
|
git config ${mode_unset} beta.haha &&
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'multivar' '
|
||||||
|
cat >expect <<EOF &&
|
||||||
[beta] ; silly comment # another comment
|
[beta] ; silly comment # another comment
|
||||||
noIndent= sillyValue ; 'nother silly comment
|
noIndent= sillyValue ; ${SQ}nother silly comment
|
||||||
|
|
||||||
# empty line
|
# empty line
|
||||||
; comment
|
; comment
|
||||||
@@ -389,7 +391,6 @@ noIndent= sillyValue ; 'nother silly comment
|
|||||||
nonewline = wow
|
nonewline = wow
|
||||||
NoNewLine = wow2 for me
|
NoNewLine = wow2 for me
|
||||||
EOF
|
EOF
|
||||||
test_expect_success 'multivar' '
|
|
||||||
git config nextsection.NoNewLine "wow2 for me" "for me$" &&
|
git config nextsection.NoNewLine "wow2 for me" "for me$" &&
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
@@ -415,9 +416,10 @@ test_expect_success 'multi-valued get-all returns all' '
|
|||||||
test_cmp expect actual
|
test_cmp expect actual
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'multivar replace' '
|
||||||
|
cat >expect <<EOF &&
|
||||||
[beta] ; silly comment # another comment
|
[beta] ; silly comment # another comment
|
||||||
noIndent= sillyValue ; 'nother silly comment
|
noIndent= sillyValue ; ${SQ}nother silly comment
|
||||||
|
|
||||||
# empty line
|
# empty line
|
||||||
; comment
|
; comment
|
||||||
@@ -425,7 +427,6 @@ noIndent= sillyValue ; 'nother silly comment
|
|||||||
nonewline = wow3
|
nonewline = wow3
|
||||||
NoNewLine = wow2 for me
|
NoNewLine = wow2 for me
|
||||||
EOF
|
EOF
|
||||||
test_expect_success 'multivar replace' '
|
|
||||||
git config nextsection.nonewline "wow3" "wow$" &&
|
git config nextsection.nonewline "wow3" "wow$" &&
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
@@ -438,17 +439,16 @@ test_expect_success 'invalid unset' '
|
|||||||
test_must_fail git config ${mode_unset} somesection.nonewline
|
test_must_fail git config ${mode_unset} somesection.nonewline
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'multivar unset' '
|
||||||
|
cat >expect <<EOF &&
|
||||||
[beta] ; silly comment # another comment
|
[beta] ; silly comment # another comment
|
||||||
noIndent= sillyValue ; 'nother silly comment
|
noIndent= sillyValue ; ${SQ}nother silly comment
|
||||||
|
|
||||||
# empty line
|
# empty line
|
||||||
; comment
|
; comment
|
||||||
[nextSection]
|
[nextSection]
|
||||||
NoNewLine = wow2 for me
|
NoNewLine = wow2 for me
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'multivar unset' '
|
|
||||||
case "$mode" in
|
case "$mode" in
|
||||||
legacy)
|
legacy)
|
||||||
git config --unset nextsection.nonewline "wow3$";;
|
git config --unset nextsection.nonewline "wow3$";;
|
||||||
@@ -458,17 +458,22 @@ test_expect_success 'multivar unset' '
|
|||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'invalid key' 'test_must_fail git config inval.2key blabla'
|
test_expect_success 'invalid key' '
|
||||||
|
test_must_fail git config inval.2key blabla
|
||||||
|
'
|
||||||
|
|
||||||
test_expect_success 'correct key' 'git config 123456.a123 987'
|
test_expect_success 'correct key' '
|
||||||
|
git config 123456.a123 987
|
||||||
|
'
|
||||||
|
|
||||||
test_expect_success 'hierarchical section' '
|
test_expect_success 'hierarchical section' '
|
||||||
git config Version.1.2.3eX.Alpha beta
|
git config Version.1.2.3eX.Alpha beta
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'hierarchical section value' '
|
||||||
|
cat >expect <<EOF &&
|
||||||
[beta] ; silly comment # another comment
|
[beta] ; silly comment # another comment
|
||||||
noIndent= sillyValue ; 'nother silly comment
|
noIndent= sillyValue ; ${SQ}nother silly comment
|
||||||
|
|
||||||
# empty line
|
# empty line
|
||||||
; comment
|
; comment
|
||||||
@@ -479,65 +484,59 @@ noIndent= sillyValue ; 'nother silly comment
|
|||||||
[Version "1.2.3eX"]
|
[Version "1.2.3eX"]
|
||||||
Alpha = beta
|
Alpha = beta
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'hierarchical section value' '
|
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
|
||||||
beta.noindent=sillyValue
|
|
||||||
nextsection.nonewline=wow2 for me
|
|
||||||
123456.a123=987
|
|
||||||
version.1.2.3eX.alpha=beta
|
|
||||||
EOF
|
|
||||||
|
|
||||||
test_expect_success 'working --list' '
|
test_expect_success 'working --list' '
|
||||||
|
cat >expect <<-\EOF &&
|
||||||
|
beta.noindent=sillyValue
|
||||||
|
nextsection.nonewline=wow2 for me
|
||||||
|
123456.a123=987
|
||||||
|
version.1.2.3eX.alpha=beta
|
||||||
|
EOF
|
||||||
git config ${mode_prefix}list > output &&
|
git config ${mode_prefix}list > output &&
|
||||||
test_cmp expect output
|
test_cmp expect output
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success '--list without repo produces empty output' '
|
test_expect_success '--list without repo produces empty output' '
|
||||||
git --git-dir=nonexistent config ${mode_prefix}list >output &&
|
git --git-dir=nonexistent config ${mode_prefix}list >output &&
|
||||||
test_must_be_empty output
|
test_must_be_empty output
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
|
||||||
beta.noindent
|
|
||||||
nextsection.nonewline
|
|
||||||
123456.a123
|
|
||||||
version.1.2.3eX.alpha
|
|
||||||
EOF
|
|
||||||
|
|
||||||
test_expect_success '--name-only --list' '
|
test_expect_success '--name-only --list' '
|
||||||
|
cat >expect <<-\EOF &&
|
||||||
|
beta.noindent
|
||||||
|
nextsection.nonewline
|
||||||
|
123456.a123
|
||||||
|
version.1.2.3eX.alpha
|
||||||
|
EOF
|
||||||
git config ${mode_prefix}list --name-only >output &&
|
git config ${mode_prefix}list --name-only >output &&
|
||||||
test_cmp expect output
|
test_cmp expect output
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
|
||||||
beta.noindent sillyValue
|
|
||||||
nextsection.nonewline wow2 for me
|
|
||||||
EOF
|
|
||||||
|
|
||||||
test_expect_success '--get-regexp' '
|
test_expect_success '--get-regexp' '
|
||||||
|
cat >expect <<-\EOF &&
|
||||||
|
beta.noindent sillyValue
|
||||||
|
nextsection.nonewline wow2 for me
|
||||||
|
EOF
|
||||||
git config ${mode_get_regexp} in >output &&
|
git config ${mode_get_regexp} in >output &&
|
||||||
test_cmp expect output
|
test_cmp expect output
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
|
||||||
beta.noindent
|
|
||||||
nextsection.nonewline
|
|
||||||
EOF
|
|
||||||
|
|
||||||
test_expect_success '--name-only --get-regexp' '
|
test_expect_success '--name-only --get-regexp' '
|
||||||
|
cat >expect <<-\EOF &&
|
||||||
|
beta.noindent
|
||||||
|
nextsection.nonewline
|
||||||
|
EOF
|
||||||
git config ${mode_get_regexp} --name-only in >output &&
|
git config ${mode_get_regexp} --name-only in >output &&
|
||||||
test_cmp expect output
|
test_cmp expect output
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
|
||||||
wow2 for me
|
|
||||||
wow4 for you
|
|
||||||
EOF
|
|
||||||
|
|
||||||
test_expect_success '--add' '
|
test_expect_success '--add' '
|
||||||
|
cat >expect <<-\EOF &&
|
||||||
|
wow2 for me
|
||||||
|
wow4 for you
|
||||||
|
EOF
|
||||||
git config --add nextsection.nonewline "wow4 for you" &&
|
git config --add nextsection.nonewline "wow4 for you" &&
|
||||||
git config ${mode_get_all} nextsection.nonewline > output &&
|
git config ${mode_get_all} nextsection.nonewline > output &&
|
||||||
test_cmp expect output
|
test_cmp expect output
|
||||||
@@ -558,37 +557,32 @@ test_expect_success 'get variable with empty value' '
|
|||||||
git config --get emptyvalue.variable ^$
|
git config --get emptyvalue.variable ^$
|
||||||
'
|
'
|
||||||
|
|
||||||
echo novalue.variable > expect
|
|
||||||
|
|
||||||
test_expect_success 'get-regexp variable with no value' '
|
test_expect_success 'get-regexp variable with no value' '
|
||||||
|
echo novalue.variable >expect &&
|
||||||
git config ${mode_get_regexp} novalue > output &&
|
git config ${mode_get_regexp} novalue > output &&
|
||||||
test_cmp expect output
|
test_cmp expect output
|
||||||
'
|
'
|
||||||
|
|
||||||
echo 'novalue.variable true' > expect
|
|
||||||
|
|
||||||
test_expect_success 'get-regexp --bool variable with no value' '
|
test_expect_success 'get-regexp --bool variable with no value' '
|
||||||
|
echo "novalue.variable true" >expect &&
|
||||||
git config ${mode_get_regexp} --bool novalue > output &&
|
git config ${mode_get_regexp} --bool novalue > output &&
|
||||||
test_cmp expect output
|
test_cmp expect output
|
||||||
'
|
'
|
||||||
|
|
||||||
echo 'emptyvalue.variable ' > expect
|
|
||||||
|
|
||||||
test_expect_success 'get-regexp variable with empty value' '
|
test_expect_success 'get-regexp variable with empty value' '
|
||||||
|
echo "emptyvalue.variable " >expect &&
|
||||||
git config ${mode_get_regexp} emptyvalue > output &&
|
git config ${mode_get_regexp} emptyvalue > output &&
|
||||||
test_cmp expect output
|
test_cmp expect output
|
||||||
'
|
'
|
||||||
|
|
||||||
echo true > expect
|
|
||||||
|
|
||||||
test_expect_success 'get bool variable with no value' '
|
test_expect_success 'get bool variable with no value' '
|
||||||
|
echo true >expect &&
|
||||||
git config --bool novalue.variable > output &&
|
git config --bool novalue.variable > output &&
|
||||||
test_cmp expect output
|
test_cmp expect output
|
||||||
'
|
'
|
||||||
|
|
||||||
echo false > expect
|
|
||||||
|
|
||||||
test_expect_success 'get bool variable with empty value' '
|
test_expect_success 'get bool variable with empty value' '
|
||||||
|
echo false >expect &&
|
||||||
git config --bool emptyvalue.variable > output &&
|
git config --bool emptyvalue.variable > output &&
|
||||||
test_cmp expect output
|
test_cmp expect output
|
||||||
'
|
'
|
||||||
@@ -604,19 +598,19 @@ cat > .git/config << EOF
|
|||||||
c = d
|
c = d
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'new section is partial match of another' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
[a.b]
|
[a.b]
|
||||||
c = d
|
c = d
|
||||||
[a]
|
[a]
|
||||||
x = y
|
x = y
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'new section is partial match of another' '
|
|
||||||
git config a.x y &&
|
git config a.x y &&
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'new variable inserts into proper section' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
[a.b]
|
[a.b]
|
||||||
c = d
|
c = d
|
||||||
[a]
|
[a]
|
||||||
@@ -625,8 +619,6 @@ cat > expect << EOF
|
|||||||
[b]
|
[b]
|
||||||
x = y
|
x = y
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'new variable inserts into proper section' '
|
|
||||||
git config b.x y &&
|
git config b.x y &&
|
||||||
git config a.b c &&
|
git config a.b c &&
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
@@ -642,11 +634,10 @@ cat > other-config << EOF
|
|||||||
bahn = strasse
|
bahn = strasse
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat > expect << EOF
|
|
||||||
ein.bahn=strasse
|
|
||||||
EOF
|
|
||||||
|
|
||||||
test_expect_success 'alternative GIT_CONFIG' '
|
test_expect_success 'alternative GIT_CONFIG' '
|
||||||
|
cat >expect <<-\EOF &&
|
||||||
|
ein.bahn=strasse
|
||||||
|
EOF
|
||||||
GIT_CONFIG=other-config git config ${mode_prefix}list >output &&
|
GIT_CONFIG=other-config git config ${mode_prefix}list >output &&
|
||||||
test_cmp expect output
|
test_cmp expect output
|
||||||
'
|
'
|
||||||
@@ -675,14 +666,13 @@ test_expect_success 'refer config from subdirectory' '
|
|||||||
test_cmp_config -C x strasse --file=../other-config --get ein.bahn
|
test_cmp_config -C x strasse --file=../other-config --get ein.bahn
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success '--set in alternative file' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
[ein]
|
[ein]
|
||||||
bahn = strasse
|
bahn = strasse
|
||||||
[anwohner]
|
[anwohner]
|
||||||
park = ausweis
|
park = ausweis
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success '--set in alternative file' '
|
|
||||||
git config --file=other-config anwohner.park ausweis &&
|
git config --file=other-config anwohner.park ausweis &&
|
||||||
test_cmp expect other-config
|
test_cmp expect other-config
|
||||||
'
|
'
|
||||||
@@ -730,7 +720,8 @@ test_expect_success 'rename another section' '
|
|||||||
git config ${mode_prefix}rename-section branch."1 234 blabl/a" branch.drei
|
git config ${mode_prefix}rename-section branch."1 234 blabl/a" branch.drei
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'rename succeeded' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
# Hallo
|
# Hallo
|
||||||
#Bello
|
#Bello
|
||||||
[branch "zwei"]
|
[branch "zwei"]
|
||||||
@@ -740,8 +731,6 @@ cat > expect << EOF
|
|||||||
[branch "drei"]
|
[branch "drei"]
|
||||||
weird
|
weird
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'rename succeeded' '
|
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
@@ -753,7 +742,8 @@ test_expect_success 'rename a section with a var on the same line' '
|
|||||||
git config ${mode_prefix}rename-section branch.vier branch.zwei
|
git config ${mode_prefix}rename-section branch.vier branch.zwei
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'rename succeeded' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
# Hallo
|
# Hallo
|
||||||
#Bello
|
#Bello
|
||||||
[branch "zwei"]
|
[branch "zwei"]
|
||||||
@@ -765,8 +755,6 @@ weird
|
|||||||
[branch "zwei"]
|
[branch "zwei"]
|
||||||
z = 1
|
z = 1
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'rename succeeded' '
|
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
@@ -816,32 +804,29 @@ test_expect_success 'remove section' '
|
|||||||
git config ${mode_prefix}remove-section branch.zwei
|
git config ${mode_prefix}remove-section branch.zwei
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'section was removed properly' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
# Hallo
|
# Hallo
|
||||||
#Bello
|
#Bello
|
||||||
[branch "drei"]
|
[branch "drei"]
|
||||||
weird
|
weird
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'section was removed properly' '
|
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'section ending' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
[gitcvs]
|
[gitcvs]
|
||||||
enabled = true
|
enabled = true
|
||||||
dbname = %Ggitcvs2.%a.%m.sqlite
|
dbname = %Ggitcvs2.%a.%m.sqlite
|
||||||
[gitcvs "ext"]
|
[gitcvs "ext"]
|
||||||
dbname = %Ggitcvs1.%a.%m.sqlite
|
dbname = %Ggitcvs1.%a.%m.sqlite
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'section ending' '
|
|
||||||
rm -f .git/config &&
|
rm -f .git/config &&
|
||||||
git config ${mode_set} gitcvs.enabled true &&
|
git config ${mode_set} gitcvs.enabled true &&
|
||||||
git config ${mode_set} gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
|
git config ${mode_set} gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
|
||||||
git config ${mode_set} gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
|
git config ${mode_set} gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
|
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success numbers '
|
test_expect_success numbers '
|
||||||
@@ -885,19 +870,17 @@ test_expect_success 'invalid stdin config' '
|
|||||||
test_grep "bad config line 1 in standard input" output
|
test_grep "bad config line 1 in standard input" output
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
|
||||||
true
|
|
||||||
false
|
|
||||||
true
|
|
||||||
false
|
|
||||||
true
|
|
||||||
false
|
|
||||||
true
|
|
||||||
false
|
|
||||||
EOF
|
|
||||||
|
|
||||||
test_expect_success bool '
|
test_expect_success bool '
|
||||||
|
cat >expect <<-\EOF &&
|
||||||
|
true
|
||||||
|
false
|
||||||
|
true
|
||||||
|
false
|
||||||
|
true
|
||||||
|
false
|
||||||
|
true
|
||||||
|
false
|
||||||
|
EOF
|
||||||
git config ${mode_set} bool.true1 01 &&
|
git config ${mode_set} bool.true1 01 &&
|
||||||
git config ${mode_set} bool.true2 -1 &&
|
git config ${mode_set} bool.true2 -1 &&
|
||||||
git config ${mode_set} bool.true3 YeS &&
|
git config ${mode_set} bool.true3 YeS &&
|
||||||
@@ -912,18 +895,20 @@ test_expect_success bool '
|
|||||||
git config --bool --get bool.true$i >>result &&
|
git config --bool --get bool.true$i >>result &&
|
||||||
git config --bool --get bool.false$i >>result || return 1
|
git config --bool --get bool.false$i >>result || return 1
|
||||||
done &&
|
done &&
|
||||||
test_cmp expect result'
|
test_cmp expect result
|
||||||
|
'
|
||||||
|
|
||||||
test_expect_success 'invalid bool (--get)' '
|
test_expect_success 'invalid bool (--get)' '
|
||||||
|
|
||||||
git config ${mode_set} bool.nobool foobar &&
|
git config ${mode_set} bool.nobool foobar &&
|
||||||
test_must_fail git config --bool --get bool.nobool'
|
test_must_fail git config --bool --get bool.nobool
|
||||||
|
'
|
||||||
|
|
||||||
test_expect_success 'invalid bool (set)' '
|
test_expect_success 'invalid bool (set)' '
|
||||||
|
test_must_fail git config --bool bool.nobool foobar
|
||||||
|
'
|
||||||
|
|
||||||
test_must_fail git config --bool bool.nobool foobar'
|
test_expect_success 'set --bool' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
cat > expect <<\EOF
|
|
||||||
[bool]
|
[bool]
|
||||||
true1 = true
|
true1 = true
|
||||||
true2 = true
|
true2 = true
|
||||||
@@ -934,9 +919,6 @@ cat > expect <<\EOF
|
|||||||
false3 = false
|
false3 = false
|
||||||
false4 = false
|
false4 = false
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'set --bool' '
|
|
||||||
|
|
||||||
rm -f .git/config &&
|
rm -f .git/config &&
|
||||||
git config --bool bool.true1 01 &&
|
git config --bool bool.true1 01 &&
|
||||||
git config --bool bool.true2 -1 &&
|
git config --bool bool.true2 -1 &&
|
||||||
@@ -948,15 +930,13 @@ test_expect_success 'set --bool' '
|
|||||||
git config --bool bool.false4 FALSE &&
|
git config --bool bool.false4 FALSE &&
|
||||||
test_cmp expect .git/config'
|
test_cmp expect .git/config'
|
||||||
|
|
||||||
cat > expect <<\EOF
|
test_expect_success 'set --int' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
[int]
|
[int]
|
||||||
val1 = 1
|
val1 = 1
|
||||||
val2 = -1
|
val2 = -1
|
||||||
val3 = 5242880
|
val3 = 5242880
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'set --int' '
|
|
||||||
|
|
||||||
rm -f .git/config &&
|
rm -f .git/config &&
|
||||||
git config --int int.val1 01 &&
|
git config --int int.val1 01 &&
|
||||||
git config --int int.val2 -1 &&
|
git config --int int.val2 -1 &&
|
||||||
@@ -994,7 +974,8 @@ test_expect_success 'get --bool-or-int' '
|
|||||||
test_cmp expect actual
|
test_cmp expect actual
|
||||||
'
|
'
|
||||||
|
|
||||||
cat >expect <<\EOF
|
test_expect_success 'set --bool-or-int' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
[bool]
|
[bool]
|
||||||
true1 = true
|
true1 = true
|
||||||
false1 = false
|
false1 = false
|
||||||
@@ -1005,8 +986,6 @@ cat >expect <<\EOF
|
|||||||
int2 = 1
|
int2 = 1
|
||||||
int3 = -1
|
int3 = -1
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'set --bool-or-int' '
|
|
||||||
rm -f .git/config &&
|
rm -f .git/config &&
|
||||||
git config --bool-or-int bool.true1 true &&
|
git config --bool-or-int bool.true1 true &&
|
||||||
git config --bool-or-int bool.false1 false &&
|
git config --bool-or-int bool.false1 false &&
|
||||||
@@ -1018,44 +997,42 @@ test_expect_success 'set --bool-or-int' '
|
|||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
'
|
'
|
||||||
|
|
||||||
cat >expect <<\EOF
|
test_expect_success !MINGW 'set --path' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
[path]
|
[path]
|
||||||
home = ~/
|
home = ~/
|
||||||
normal = /dev/null
|
normal = /dev/null
|
||||||
trailingtilde = foo~
|
trailingtilde = foo~
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success !MINGW 'set --path' '
|
|
||||||
rm -f .git/config &&
|
rm -f .git/config &&
|
||||||
git config --path path.home "~/" &&
|
git config --path path.home "~/" &&
|
||||||
git config --path path.normal "/dev/null" &&
|
git config --path path.normal "/dev/null" &&
|
||||||
git config --path path.trailingtilde "foo~" &&
|
git config --path path.trailingtilde "foo~" &&
|
||||||
test_cmp expect .git/config'
|
test_cmp expect .git/config
|
||||||
|
'
|
||||||
|
|
||||||
if test_have_prereq !MINGW && test "${HOME+set}"
|
if test_have_prereq !MINGW && test "${HOME+set}"
|
||||||
then
|
then
|
||||||
test_set_prereq HOMEVAR
|
test_set_prereq HOMEVAR
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cat >expect <<EOF
|
|
||||||
$HOME/
|
|
||||||
/dev/null
|
|
||||||
foo~
|
|
||||||
EOF
|
|
||||||
|
|
||||||
test_expect_success HOMEVAR 'get --path' '
|
test_expect_success HOMEVAR 'get --path' '
|
||||||
|
cat >expect <<-EOF &&
|
||||||
|
$HOME/
|
||||||
|
/dev/null
|
||||||
|
foo~
|
||||||
|
EOF
|
||||||
git config --get --path path.home > result &&
|
git config --get --path path.home > result &&
|
||||||
git config --get --path path.normal >> result &&
|
git config --get --path path.normal >> result &&
|
||||||
git config --get --path path.trailingtilde >> result &&
|
git config --get --path path.trailingtilde >> result &&
|
||||||
test_cmp expect result
|
test_cmp expect result
|
||||||
'
|
'
|
||||||
|
|
||||||
cat >expect <<\EOF
|
|
||||||
/dev/null
|
|
||||||
foo~
|
|
||||||
EOF
|
|
||||||
|
|
||||||
test_expect_success !MINGW 'get --path copes with unset $HOME' '
|
test_expect_success !MINGW 'get --path copes with unset $HOME' '
|
||||||
|
cat >expect <<-\EOF &&
|
||||||
|
/dev/null
|
||||||
|
foo~
|
||||||
|
EOF
|
||||||
(
|
(
|
||||||
sane_unset HOME &&
|
sane_unset HOME &&
|
||||||
test_must_fail git config --get --path path.home \
|
test_must_fail git config --get --path path.home \
|
||||||
@@ -1107,17 +1084,35 @@ test_expect_success 'get --type=color' '
|
|||||||
rm .git/config &&
|
rm .git/config &&
|
||||||
git config ${mode_set} foo.color "red" &&
|
git config ${mode_set} foo.color "red" &&
|
||||||
git config --get --type=color foo.color >actual.raw &&
|
git config --get --type=color foo.color >actual.raw &&
|
||||||
|
git config get --type=color foo.color >actual-subcommand.raw &&
|
||||||
|
test_cmp actual.raw actual-subcommand.raw &&
|
||||||
test_decode_color <actual.raw >actual &&
|
test_decode_color <actual.raw >actual &&
|
||||||
echo "<RED>" >expect &&
|
echo "<RED>" >expect &&
|
||||||
test_cmp expect actual
|
test_cmp expect actual
|
||||||
'
|
'
|
||||||
|
|
||||||
cat >expect << EOF
|
test_expect_success 'get --type=color with default value only' '
|
||||||
|
git config --get-color "" "red" >actual.raw &&
|
||||||
|
test_decode_color <actual.raw >actual &&
|
||||||
|
echo "<RED>" >expect &&
|
||||||
|
test_cmp expect actual &&
|
||||||
|
git config get --type=color --default="red" "" >actual-subcommand.raw &&
|
||||||
|
test_cmp actual.raw actual-subcommand.raw
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_success TTY 'get --type=color does not use a pager' '
|
||||||
|
test_config core.pager "echo foobar" &&
|
||||||
|
test_terminal git config get --type=color --default="red" "" >actual.raw &&
|
||||||
|
test_decode_color <actual.raw >actual &&
|
||||||
|
echo "<RED>" >expect &&
|
||||||
|
test_cmp expect actual
|
||||||
|
'
|
||||||
|
|
||||||
|
test_expect_success 'set --type=color' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
[foo]
|
[foo]
|
||||||
color = red
|
color = red
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_expect_success 'set --type=color' '
|
|
||||||
rm .git/config &&
|
rm .git/config &&
|
||||||
git config --type=color foo.color "red" &&
|
git config --type=color foo.color "red" &&
|
||||||
test_cmp expect .git/config
|
test_cmp expect .git/config
|
||||||
@@ -1133,14 +1128,14 @@ test_expect_success 'set --type=color barfs on non-color' '
|
|||||||
test_grep "cannot parse color" error
|
test_grep "cannot parse color" error
|
||||||
'
|
'
|
||||||
|
|
||||||
cat > expect << EOF
|
test_expect_success 'quoting' '
|
||||||
|
cat >expect <<\EOF &&
|
||||||
[quote]
|
[quote]
|
||||||
leading = " test"
|
leading = " test"
|
||||||
ending = "test "
|
ending = "test "
|
||||||
semicolon = "test;test"
|
semicolon = "test;test"
|
||||||
hash = "test#test"
|
hash = "test#test"
|
||||||
EOF
|
EOF
|
||||||
test_expect_success 'quoting' '
|
|
||||||
rm -f .git/config &&
|
rm -f .git/config &&
|
||||||
git config ${mode_set} quote.leading " test" &&
|
git config ${mode_set} quote.leading " test" &&
|
||||||
git config ${mode_set} quote.ending "test " &&
|
git config ${mode_set} quote.ending "test " &&
|
||||||
@@ -1151,10 +1146,13 @@ test_expect_success 'quoting' '
|
|||||||
|
|
||||||
test_expect_success 'key with newline' '
|
test_expect_success 'key with newline' '
|
||||||
test_must_fail git config ${mode_get} "key.with
|
test_must_fail git config ${mode_get} "key.with
|
||||||
newline" 123'
|
newline" 123
|
||||||
|
'
|
||||||
|
|
||||||
test_expect_success 'value with newline' 'git config ${mode_set} key.sub value.with\\\
|
test_expect_success 'value with newline' '
|
||||||
newline'
|
git config ${mode_set} key.sub value.with\\\
|
||||||
|
newline
|
||||||
|
'
|
||||||
|
|
||||||
cat > .git/config <<\EOF
|
cat > .git/config <<\EOF
|
||||||
[section]
|
[section]
|
||||||
@@ -1166,13 +1164,12 @@ inued
|
|||||||
inued"
|
inued"
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat > expect <<\EOF
|
|
||||||
section.continued=continued
|
|
||||||
section.noncont=not continued
|
|
||||||
section.quotecont=cont;inued
|
|
||||||
EOF
|
|
||||||
|
|
||||||
test_expect_success 'value continued on next line' '
|
test_expect_success 'value continued on next line' '
|
||||||
|
cat >expect <<-\EOF &&
|
||||||
|
section.continued=continued
|
||||||
|
section.noncont=not continued
|
||||||
|
section.quotecont=cont;inued
|
||||||
|
EOF
|
||||||
git config ${mode_prefix}list > result &&
|
git config ${mode_prefix}list > result &&
|
||||||
test_cmp expect result
|
test_cmp expect result
|
||||||
'
|
'
|
||||||
@@ -1365,7 +1362,6 @@ test_expect_success 'multiple git -c appends config' '
|
|||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'last one wins: two level vars' '
|
test_expect_success 'last one wins: two level vars' '
|
||||||
|
|
||||||
# sec.var and sec.VAR are the same variable, as the first
|
# sec.var and sec.VAR are the same variable, as the first
|
||||||
# and the last level of a configuration variable name is
|
# and the last level of a configuration variable name is
|
||||||
# case insensitive.
|
# case insensitive.
|
||||||
@@ -1384,7 +1380,6 @@ test_expect_success 'last one wins: two level vars' '
|
|||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'last one wins: three level vars' '
|
test_expect_success 'last one wins: three level vars' '
|
||||||
|
|
||||||
# v.a.r and v.A.r are not the same variable, as the middle
|
# v.a.r and v.A.r are not the same variable, as the middle
|
||||||
# level of a three-level configuration variable name is
|
# level of a three-level configuration variable name is
|
||||||
# case sensitive.
|
# case sensitive.
|
||||||
|
|||||||
Reference in New Issue
Block a user