Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictoria Dye <vdye@github.com>2022-03-23 21:17:58 +0300
committerJunio C Hamano <gitster@pobox.com>2022-03-24 00:39:44 +0300
commit45bf76284b40856e47e8809e952167f0316b8a99 (patch)
treed9f3716ebcd9163c959255b0485dfa9e7714b9ea /t/t7102-reset.sh
parent4b8b0f6fa2778c1f9c373620e3f07787543914c6 (diff)
reset: do not make '--quiet' disable index refresh
Update '--quiet' to no longer implicitly skip refreshing the index in a mixed reset. Users now have the ability to explicitly disable refreshing the index with the '--no-refresh' option, so they no longer need to use '--quiet' to do so. Moreover, we explicitly remove the refresh-skipping behavior from '--quiet' because it is completely unrelated to the stated purpose of the option: "Be quiet, only report errors." Helped-by: Phillip Wood <phillip.wood@dunelm.org.uk> Signed-off-by: Victoria Dye <vdye@github.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7102-reset.sh')
-rwxr-xr-xt/t7102-reset.sh32
1 files changed, 5 insertions, 27 deletions
diff --git a/t/t7102-reset.sh b/t/t7102-reset.sh
index 1dc3911a06..8b62bb39b3 100755
--- a/t/t7102-reset.sh
+++ b/t/t7102-reset.sh
@@ -485,25 +485,12 @@ test_reset_refreshes_index () {
}
test_expect_success '--mixed refreshes the index' '
- # Verify default behavior (with no config settings or command line
- # options)
- test_reset_refreshes_index
-'
-test_expect_success '--mixed --[no-]quiet sets default refresh behavior' '
- # Verify that --[no-]quiet and `reset.quiet` (without --[no-]refresh)
- # determine refresh behavior
-
- # Config setting
- ! test_reset_refreshes_index "-c reset.quiet=true" &&
- test_reset_refreshes_index "-c reset.quiet=false" &&
-
- # Command line option
- ! test_reset_refreshes_index "" --quiet &&
- test_reset_refreshes_index "" --no-quiet &&
+ # Verify default behavior (without --[no-]refresh or reset.refresh)
+ test_reset_refreshes_index &&
- # Command line option overrides config setting
- ! test_reset_refreshes_index "-c reset.quiet=false" --quiet &&
- test_reset_refreshes_index "-c reset.refresh=true" --no-quiet
+ # With --quiet & reset.quiet
+ test_reset_refreshes_index "-c reset.quiet=true" &&
+ test_reset_refreshes_index "" --quiet
'
test_expect_success '--mixed --[no-]refresh sets refresh behavior' '
@@ -522,15 +509,6 @@ test_expect_success '--mixed --[no-]refresh sets refresh behavior' '
! test_reset_refreshes_index "-c reset.refresh=true" --no-refresh
'
-test_expect_success '--mixed --refresh overrides --quiet refresh behavior' '
- # Verify that *both* --refresh and `reset.refresh` override the
- # default non-refresh behavior of --quiet
- test_reset_refreshes_index "" "--quiet --refresh" &&
- test_reset_refreshes_index "-c reset.quiet=true" --refresh &&
- test_reset_refreshes_index "-c reset.refresh=true" --quiet &&
- test_reset_refreshes_index "-c reset.refresh=true -c reset.quiet=true"
-'
-
test_expect_success '--mixed preserves skip-worktree' '
echo 123 >>file2 &&
git add file2 &&