aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-07-25 12:05:24 -0700
committerJunio C Hamano <gitster@pobox.com>2023-07-25 12:05:24 -0700
commit261ff512e12c124f211124c2b342eb449fca6b3b (patch)
treefcf48ff318c81f2e760517fb2aacbfee036f2f3f
parentMerge branch 'jk/unused-parameter' (diff)
parentt6300: fix setup with GPGSSH but without GPG (diff)
downloadgit-261ff512e12c124f211124c2b342eb449fca6b3b.tar.gz
git-261ff512e12c124f211124c2b342eb449fca6b3b.zip
Merge branch 'rs/ref-filter-signature-fix'
Test fix. * rs/ref-filter-signature-fix: t6300: fix setup with GPGSSH but without GPG
-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
'