diff options
| author | Junio C Hamano <gitster@pobox.com> | 2012-02-10 14:08:02 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2012-02-10 14:08:02 -0800 |
| commit | fd6abd0c65b38897da64ef883ed1934d2b2b1a3a (patch) | |
| tree | 8c787e5034449bda1dfd0ad5c4d1c17128354d3e /t | |
| parent | Merge branch 'jc/branch-desc-typoavoidance' (diff) | |
| parent | merge: do not create a signed tag merge under --ff-only option (diff) | |
| download | git-fd6abd0c65b38897da64ef883ed1934d2b2b1a3a.tar.gz git-fd6abd0c65b38897da64ef883ed1934d2b2b1a3a.zip | |
Merge branch 'jc/merge-ff-only-stronger-than-signed-merge'
* jc/merge-ff-only-stronger-than-signed-merge:
merge: do not create a signed tag merge under --ff-only option
Diffstat (limited to 't')
| -rwxr-xr-x | t/t7600-merge.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/t/t7600-merge.sh b/t/t7600-merge.sh index 5d8c428543..a598dfa477 100755 --- a/t/t7600-merge.sh +++ b/t/t7600-merge.sh @@ -27,6 +27,7 @@ Testing basic merge operations/option parsing. ' . ./test-lib.sh +. "$TEST_DIRECTORY"/lib-gpg.sh printf '%s\n' 1 2 3 4 5 6 7 8 9 >file printf '%s\n' '1 X' 2 3 4 5 6 7 8 9 >file.1 @@ -670,4 +671,16 @@ test_expect_success 'merge --no-ff --edit' ' test_cmp actual expected ' +test_expect_success GPG 'merge --ff-only tag' ' + git reset --hard c0 && + git commit --allow-empty -m "A newer commit" && + git tag -s -m "A newer commit" signed && + git reset --hard c0 && + + git merge --ff-only signed && + git rev-parse signed^0 >expect && + git rev-parse HEAD >actual && + test_cmp actual expect +' + test_done |
