Hi, Ramkumar Ramachandra wrote: > --- a/t/t3510-cherry-pick-sequence.sh > +++ b/t/t3510-cherry-pick-sequence.sh > @@ -211,4 +211,15 @@ test_expect_success 'malformed instruction sheet 2' ' > test_must_fail git cherry-pick --continue > ' > > +test_expect_success 'malformed instruction sheet 3' ' > + pristine_detach initial && > + test_must_fail git cherry-pick base..anotherpick && > + echo "resolved" >foo && > + git add foo && > + git commit && > + sed "s/pick \([0-9a-f]\+\)\(.*\)/pick \1\1\1\1\1\1\1\1\2/" .git/sequencer/todo >new_sheet && This construct (\+ in sed regexes) is not portable. See the note on grep in Documentation/CodingGuidelines (maybe it should be tweaked to say "grep and sed"). -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html