mirror of
https://github.com/git/git.git
synced 2025-02-06 10:03:06 +00:00
Merge branch 'bf/explicit-config-set-in-advice-messages'
The advice messages now tell the newer 'git config set' command to set the advice.token configuration variable to squelch a message. * bf/explicit-config-set-in-advice-messages: advice: suggest using subcommand "git config set"
This commit is contained in:
commit
e6663b9ac5
2
advice.c
2
advice.c
@ -93,7 +93,7 @@ static struct {
|
||||
|
||||
static const char turn_off_instructions[] =
|
||||
N_("\n"
|
||||
"Disable this message with \"git config advice.%s false\"");
|
||||
"Disable this message with \"git config set advice.%s false\"");
|
||||
|
||||
static void vadvise(const char *advice, int display_instructions,
|
||||
const char *key, va_list params)
|
||||
|
2
commit.c
2
commit.c
@ -276,7 +276,7 @@ static int read_graft_file(struct repository *r, const char *graft_file)
|
||||
"to convert the grafts into replace refs.\n"
|
||||
"\n"
|
||||
"Turn this message off by running\n"
|
||||
"\"git config advice.graftFileDeprecated false\""));
|
||||
"\"git config set advice.graftFileDeprecated false\""));
|
||||
while (!strbuf_getwholeline(&buf, fp, '\n')) {
|
||||
/* The format is just "Commit Parent1 Parent2 ...\n" */
|
||||
struct commit_graft *graft = read_graft_line(&buf);
|
||||
|
2
hook.c
2
hook.c
@ -39,7 +39,7 @@ const char *find_hook(struct repository *r, const char *name)
|
||||
advise(_("The '%s' hook was ignored because "
|
||||
"it's not set as executable.\n"
|
||||
"You can disable this warning with "
|
||||
"`git config advice.ignoredHook false`."),
|
||||
"`git config set advice.ignoredHook false`."),
|
||||
path.buf);
|
||||
}
|
||||
}
|
||||
|
@ -952,7 +952,7 @@ static int get_oid_basic(struct repository *r, const char *str, int len,
|
||||
"\n"
|
||||
"where \"$br\" is somehow empty and a 40-hex ref is created. Please\n"
|
||||
"examine these refs and maybe delete them. Turn this message off by\n"
|
||||
"running \"git config advice.objectNameWarning false\"");
|
||||
"running \"git config set advice.objectNameWarning false\"");
|
||||
struct object_id tmp_oid;
|
||||
char *real_ref = NULL;
|
||||
int refs_found = 0;
|
||||
|
@ -10,7 +10,7 @@ export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
||||
test_expect_success 'advice should be printed when config variable is unset' '
|
||||
cat >expect <<-\EOF &&
|
||||
hint: This is a piece of advice
|
||||
hint: Disable this message with "git config advice.nestedTag false"
|
||||
hint: Disable this message with "git config set advice.nestedTag false"
|
||||
EOF
|
||||
test-tool advise "This is a piece of advice" 2>actual &&
|
||||
test_cmp expect actual
|
||||
|
@ -1696,7 +1696,7 @@ test_expect_success 'errors if given a bad branch name' '
|
||||
cat <<-\EOF >expect &&
|
||||
fatal: '\''foo..bar'\'' is not a valid branch name
|
||||
hint: See `man git check-ref-format`
|
||||
hint: Disable this message with "git config advice.refSyntax false"
|
||||
hint: Disable this message with "git config set advice.refSyntax false"
|
||||
EOF
|
||||
test_must_fail git branch foo..bar >actual 2>&1 &&
|
||||
test_cmp expect actual
|
||||
|
@ -2258,20 +2258,20 @@ test_expect_success 'non-merge commands reject merge commits' '
|
||||
error: ${SQ}pick${SQ} does not accept merge commits
|
||||
hint: ${SQ}pick${SQ} does not take a merge commit. If you wanted to
|
||||
hint: replay the merge, use ${SQ}merge -C${SQ} on the commit.
|
||||
hint: Disable this message with "git config advice.rebaseTodoError false"
|
||||
hint: Disable this message with "git config set advice.rebaseTodoError false"
|
||||
error: invalid line 1: pick $oid
|
||||
error: ${SQ}reword${SQ} does not accept merge commits
|
||||
hint: ${SQ}reword${SQ} does not take a merge commit. If you wanted to
|
||||
hint: replay the merge and reword the commit message, use
|
||||
hint: ${SQ}merge -c${SQ} on the commit
|
||||
hint: Disable this message with "git config advice.rebaseTodoError false"
|
||||
hint: Disable this message with "git config set advice.rebaseTodoError false"
|
||||
error: invalid line 2: reword $oid
|
||||
error: ${SQ}edit${SQ} does not accept merge commits
|
||||
hint: ${SQ}edit${SQ} does not take a merge commit. If you wanted to
|
||||
hint: replay the merge, use ${SQ}merge -C${SQ} on the commit, and then
|
||||
hint: ${SQ}break${SQ} to give the control back to you so that you can
|
||||
hint: do ${SQ}git commit --amend && git rebase --continue${SQ}.
|
||||
hint: Disable this message with "git config advice.rebaseTodoError false"
|
||||
hint: Disable this message with "git config set advice.rebaseTodoError false"
|
||||
error: invalid line 3: edit $oid
|
||||
error: cannot squash merge commit into another commit
|
||||
error: invalid line 4: fixup $oid
|
||||
|
@ -177,7 +177,7 @@ test_expect_success 'advice from failed revert' '
|
||||
hint: You can instead skip this commit with "git revert --skip".
|
||||
hint: To abort and get back to the state before "git revert",
|
||||
hint: run "git revert --abort".
|
||||
hint: Disable this message with "git config advice.mergeConflict false"
|
||||
hint: Disable this message with "git config set advice.mergeConflict false"
|
||||
EOF
|
||||
test_commit --append --no-tag "double-add dream" dream dream &&
|
||||
test_must_fail git revert HEAD^ 2>actual &&
|
||||
|
@ -34,7 +34,7 @@ test_expect_success setup '
|
||||
git commit --allow-empty --allow-empty-message &&
|
||||
git tag empty &&
|
||||
git checkout main &&
|
||||
git config advice.detachedhead false
|
||||
git config set advice.detachedhead false
|
||||
|
||||
'
|
||||
|
||||
@ -60,7 +60,7 @@ test_expect_success 'advice from failed cherry-pick' '
|
||||
hint: You can instead skip this commit with "git cherry-pick --skip".
|
||||
hint: To abort and get back to the state before "git cherry-pick",
|
||||
hint: run "git cherry-pick --abort".
|
||||
hint: Disable this message with "git config advice.mergeConflict false"
|
||||
hint: Disable this message with "git config set advice.mergeConflict false"
|
||||
EOF
|
||||
test_must_fail git cherry-pick picked 2>actual &&
|
||||
|
||||
@ -75,7 +75,7 @@ test_expect_success 'advice from failed cherry-pick --no-commit' "
|
||||
error: could not apply \$picked... picked
|
||||
hint: after resolving the conflicts, mark the corrected paths
|
||||
hint: with 'git add <paths>' or 'git rm <paths>'
|
||||
hint: Disable this message with \"git config advice.mergeConflict false\"
|
||||
hint: Disable this message with \"git config set advice.mergeConflict false\"
|
||||
EOF
|
||||
test_must_fail git cherry-pick --no-commit picked 2>actual &&
|
||||
|
||||
|
@ -25,7 +25,7 @@ pristine_detach () {
|
||||
}
|
||||
|
||||
test_expect_success setup '
|
||||
git config advice.detachedhead false &&
|
||||
git config set advice.detachedhead false &&
|
||||
echo unrelated >unrelated &&
|
||||
git add unrelated &&
|
||||
test_commit initial foo a &&
|
||||
|
@ -51,7 +51,7 @@ trailing empty lines
|
||||
"
|
||||
|
||||
test_expect_success setup '
|
||||
git config advice.detachedhead false &&
|
||||
git config set advice.detachedhead false &&
|
||||
echo unrelated >unrelated &&
|
||||
git add unrelated &&
|
||||
test_commit initial foo a &&
|
||||
|
@ -20,7 +20,7 @@ test_expect_success 'setup' "
|
||||
hint: If you intend to update such entries, try one of the following:
|
||||
hint: * Use the --sparse option.
|
||||
hint: * Disable or modify the sparsity rules.
|
||||
hint: Disable this message with \"git config advice.updateSparsePath false\"
|
||||
hint: Disable this message with \"git config set advice.updateSparsePath false\"
|
||||
EOF
|
||||
|
||||
echo b | cat sparse_error_header - >sparse_entry_b_error &&
|
||||
|
@ -31,7 +31,7 @@ test_expect_success 'Test with no pathspecs' '
|
||||
cat >expect <<-EOF &&
|
||||
Nothing specified, nothing added.
|
||||
hint: Maybe you wanted to say ${SQ}git add .${SQ}?
|
||||
hint: Disable this message with "git config advice.addEmptyPathspec false"
|
||||
hint: Disable this message with "git config set advice.addEmptyPathspec false"
|
||||
EOF
|
||||
git add 2>actual &&
|
||||
test_cmp expect actual
|
||||
@ -375,7 +375,7 @@ test_expect_success '"git add" a embedded repository' '
|
||||
hint: git rm --cached inner1
|
||||
hint:
|
||||
hint: See "git help submodule" for more information.
|
||||
hint: Disable this message with "git config advice.addEmbeddedRepo false"
|
||||
hint: Disable this message with "git config set advice.addEmbeddedRepo false"
|
||||
warning: adding embedded git repository: inner2
|
||||
EOF
|
||||
test_cmp expect actual
|
||||
@ -413,7 +413,7 @@ cat >expect.err <<\EOF
|
||||
The following paths are ignored by one of your .gitignore files:
|
||||
ignored-file
|
||||
hint: Use -f if you really want to add them.
|
||||
hint: Disable this message with "git config advice.addIgnoredFile false"
|
||||
hint: Disable this message with "git config set advice.addIgnoredFile false"
|
||||
EOF
|
||||
cat >expect.out <<\EOF
|
||||
add 'track-this'
|
||||
|
@ -54,7 +54,7 @@ test_expect_success 'setup' "
|
||||
hint: If you intend to update such entries, try one of the following:
|
||||
hint: * Use the --sparse option.
|
||||
hint: * Disable or modify the sparsity rules.
|
||||
hint: Disable this message with \"git config advice.updateSparsePath false\"
|
||||
hint: Disable this message with \"git config set advice.updateSparsePath false\"
|
||||
EOF
|
||||
|
||||
echo sparse_entry | cat sparse_error_header - >sparse_entry_error &&
|
||||
|
@ -32,7 +32,7 @@ test_expect_success 'setup' "
|
||||
hint: If you intend to update such entries, try one of the following:
|
||||
hint: * Use the --sparse option.
|
||||
hint: * Disable or modify the sparsity rules.
|
||||
hint: Disable this message with \"git config advice.updateSparsePath false\"
|
||||
hint: Disable this message with \"git config set advice.updateSparsePath false\"
|
||||
EOF
|
||||
|
||||
cat >dirty_error_header <<-EOF &&
|
||||
@ -45,7 +45,7 @@ test_expect_success 'setup' "
|
||||
hint: To correct the sparsity of these paths, do the following:
|
||||
hint: * Use \"git add --sparse <paths>\" to update the index
|
||||
hint: * Use \"git sparse-checkout reapply\" to apply the sparsity rules
|
||||
hint: Disable this message with \"git config advice.updateSparsePath false\"
|
||||
hint: Disable this message with \"git config set advice.updateSparsePath false\"
|
||||
EOF
|
||||
"
|
||||
|
||||
|
@ -1862,7 +1862,7 @@ test_expect_success 'recursive tagging should give advice' '
|
||||
hint: already a tag. If you meant to tag the object that it points to, use:
|
||||
hint:
|
||||
hint: git tag -f nested annotated-v4.0^{}
|
||||
hint: Disable this message with "git config advice.nestedTag false"
|
||||
hint: Disable this message with "git config set advice.nestedTag false"
|
||||
EOF
|
||||
git tag -m nested nested annotated-v4.0 2>actual &&
|
||||
test_cmp expect actual
|
||||
|
@ -224,7 +224,7 @@ test_expect_success 'switch to another branch while carrying a deletion' '
|
||||
'
|
||||
|
||||
test_expect_success 'checkout to detach HEAD (with advice declined)' '
|
||||
git config advice.detachedHead false &&
|
||||
git config set advice.detachedHead false &&
|
||||
rev=$(git rev-parse --short renamer^) &&
|
||||
git checkout -f renamer &&
|
||||
git clean -f &&
|
||||
@ -244,7 +244,7 @@ test_expect_success 'checkout to detach HEAD (with advice declined)' '
|
||||
'
|
||||
|
||||
test_expect_success 'checkout to detach HEAD' '
|
||||
git config advice.detachedHead true &&
|
||||
git config set advice.detachedHead true &&
|
||||
rev=$(git rev-parse --short renamer^) &&
|
||||
git checkout -f renamer &&
|
||||
git clean -f &&
|
||||
|
@ -212,7 +212,7 @@ test_expect_success 'submodule add to .gitignored path fails' '
|
||||
The following paths are ignored by one of your .gitignore files:
|
||||
submod
|
||||
hint: Use -f if you really want to add them.
|
||||
hint: Disable this message with "git config advice.addIgnoredFile false"
|
||||
hint: Disable this message with "git config set advice.addIgnoredFile false"
|
||||
EOF
|
||||
# Does not use test_commit due to the ignore
|
||||
echo "*" > .gitignore &&
|
||||
|
@ -1699,7 +1699,7 @@ test_expect_success 'setup slow status advice' '
|
||||
EOF
|
||||
git add .gitignore &&
|
||||
git commit -m "Add .gitignore" &&
|
||||
git config advice.statusuoption true
|
||||
git config set advice.statusuoption true
|
||||
)
|
||||
'
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user