Hallo Johannes, > diff --git a/t/t6050-replace.sh b/t/t6050-replace.sh > index c630aba657e..bed86a0af3d 100755 > --- a/t/t6050-replace.sh > +++ b/t/t6050-replace.sh > @@ -444,4 +444,24 @@ test_expect_success GPG '--graft on a commit with a mergetag' ' Note the GPG prereq of the previous test. > git replace -d $HASH10 > ' > > +test_expect_success '--convert-graft-file' ' > + : add and convert graft file && > + printf "%s\n%s %s\n\n# comment\n%s\n" \ > + $(git rev-parse HEAD^^ HEAD^ HEAD^^ HEAD^2) \ This test relies on the piece of history that was created two tests earlier in 'set up a merge commit with a mergetag', and that test, too, has the GPG prereq. So if there is no GPG installed, then that test won't be executed, the history needed by this test won't be created, HEAD won't have a second parent, and I'm sure you know where this is going: ok 32 # skip set up a merge commit with a mergetag (missing GPG) <... snip ...> ok 33 # skip --graft on a commit with a mergetag (missing GPG) <... snip ...> ++git log --graph --oneline * ffccc9d hello: again 3 more lines * 14ac020 hello: 2 more lines * 093e41a hello: BUG fixed * 40237c8 hello: 1 more line * 8fc2a8e hello: 2 more lines * 4217adb hello: 4 more lines with a BUG * 00ad688 hello: 4 lines ++: add and convert graft file +++git rev-parse 'HEAD^^' 'HEAD^' 'HEAD^^' 'HEAD^2' fatal: ambiguous argument 'HEAD^2': unknown revision or path not in the working tree. Use '--' to separate paths from revisions, like this: 'git <command> [<revision>...] -- [<file>...]' ++printf '%s\n%s %s\n\n# comment\n%s\n' 093e41a79d4a8bfe3c758a96c95e5bf9e35ed89c 14ac020163ea60a9d683ce68e36c946f31ecc856 093e41a79d4a8bfe3c758a96c95e5bf9e35ed89c 'HEAD^2' ++cat .git/info/grafts 093e41a79d4a8bfe3c758a96c95e5bf9e35ed89c 14ac020163ea60a9d683ce68e36c946f31ecc856 093e41a79d4a8bfe3c758a96c95e5bf9e35ed89c # comment HEAD^2 ++git replace --convert-graft-file hint: Support for <GIT_DIR>/info/grafts is deprecated hint: and will be removed in a future Git version. hint: hint: Please use "git replace --convert-graft-file" hint: to convert the grafts into replace refs. hint: hint: Turn this message off by running hint: "git config advice.graftFileDeprecated false" error: bad graft data: HEAD^2 error: new commit is the same as the old one: '14ac020163ea60a9d683ce68e36c946f31ecc856' error: Not a valid object name: 'HEAD^2' warning: could not convert the following graft(s): 14ac020163ea60a9d683ce68e36c946f31ecc856 093e41a79d4a8bfe3c758a96c95e5bf9e35ed89c HEAD^2 error: last command exited with $?=1 not ok 34 - --convert-graft-file > + >.git/info/grafts && > + git replace --convert-graft-file && > + test_path_is_missing .git/info/grafts && > + > + : verify that the history is now "grafted" && > + git rev-list HEAD >out && > + test_line_count = 4 out && > + > + : create invalid graft file and verify that it is not deleted && > + test_when_finished "rm -f .git/info/grafts" && > + echo $EMPTY_BLOB $EMPTY_TREE >.git/info/grafts && > + test_must_fail git replace --convert-graft-file 2>err && > + test_i18ngrep "$EMPTY_BLOB $EMPTY_TREE" err && > + test_i18ngrep "$EMPTY_BLOB $EMPTY_TREE" .git/info/grafts > +' > + > test_done > -- > 2.17.0.windows.1.33.gfcbb1fa0445