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
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-07-25 22:05:24 +0300
committerJunio C Hamano <gitster@pobox.com>2023-07-25 22:05:24 +0300
commit261ff512e12c124f211124c2b342eb449fca6b3b (patch)
treefcf48ff318c81f2e760517fb2aacbfee036f2f3f /t
parentc5fcd34e1bfabde14dff226ad92aca9c39d67391 (diff)
parent065135fc0bf3c859fcf63abe2e413ccc32a9cc50 (diff)
Merge branch 'rs/ref-filter-signature-fix'
Test fix. * rs/ref-filter-signature-fix: t6300: fix setup with GPGSSH but without GPG
Diffstat (limited to 't')
-rwxr-xr-xt/t6300-for-each-ref.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t6300-for-each-ref.sh b/t/t6300-for-each-ref.sh
index 910bf1ea94..d44f3c4a73 100755
--- a/t/t6300-for-each-ref.sh
+++ b/t/t6300-for-each-ref.sh
@@ -1619,7 +1619,8 @@ test_expect_success GPGSSH 'setup for signature atom using ssh' '
test_config user.signingkey "${GPGSSH_KEY_PRIMARY}" &&
echo "8" >file &&
test_tick &&
- git commit -a -S -m "file: 8" &&
+ git add file &&
+ git commit -S -m "file: 8" &&
git tag eighth-signed-ssh
'