diff options
| author | Junio C Hamano <gitster@pobox.com> | 2023-07-25 12:05:24 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-07-25 12:05:24 -0700 |
| commit | 261ff512e12c124f211124c2b342eb449fca6b3b (patch) | |
| tree | fcf48ff318c81f2e760517fb2aacbfee036f2f3f | |
| parent | Merge branch 'jk/unused-parameter' (diff) | |
| parent | t6300: fix setup with GPGSSH but without GPG (diff) | |
| download | git-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-x | t/t6300-for-each-ref.sh | 3 |
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 ' |
